I want to insert backslash before apostrophe in "children's world" string. Is there a easy way to do it?
irb(main):035:0> s = "children's world"
=> "children's world"
irb(main):036:0> s.gsub('\'', '\\\'')
=> "childrens worlds world"
|
|
I want to insert backslash before apostrophe in "children's world" string. Is there a easy way to do it?
|
||
|
|
|
|
Your problem is that the string "\'" is meaningful to gsub in a replacement string. In order to make it work the way you want, you have to use the block form.
|
||
|
|
|
|
|
||
|
|
from ruby-doc.org about the replacement pattern for
This includes the sequence Either
What you want
or if you have to do a lot with
|
|||
|
|