# File dictionary_entry.rb, line 28
 def fill_instance_array_from_sent_array( sent_array)           
  instance_array = []
        sent_array.each do  |value |  
               value = value.strip
  end
   sent_array[0] == "" ?  offset = 1 :  offset = 0
  for i in offset..sent_array.length-1 
                instance_array[i - offset] = sent_array[i]
  end
  instance_array
 end