Hi I want to substitute single quotes in a string but fails unless resorting to overkill (imho) techniques like blocks:
>> s = "ab'cd" => "ab'cd" >> s.sub("'") {|s| %q{\'} } => "ab\\'cd" As seen this method works but why can't I do something like >> a.sub("'", %q{\'}) => "aaabbbbbb" when >> a.sub("'", %q{h}) => "aaahbbb" works? Can someone shed some light on this? Thanks in advance. Regards Erik --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk@googlegroups.com To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---