I am newbie in Ruby.
Are there some differences between "string" and 'string' in ruby?
such as
txt_data.gsub("ABC",'')
and
txt_data.gsub('ABC','')
It seems they are always the same. Are there some cases where we need to use "" and '' selectively?