Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm working in Ruby and I'm trying to escape ' characters to ' so that I can use them in SQL. I'm trying to use gsub, but it doesn't seem to be working.

"this doesn't work".gsub /'/, '\'' #=> "this doesnt workt work"
"this doesn't work".gsub /'/, '\'' #=> "this doesnt workt work"
"this doesn't work".gsub /'/, '\\'' #=> "this doesn\'t work"
"this doesn't work".gsub /'/, '\\'' #=> "this doesn\'t work"

I don't know if gsub is even the right method to be using, so I'm willing to try almost anything that gets the results I'm looking for.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

Someone else had this very issue, due to a special meaning/interpretation in Ruby's regex.

' means $' which is everything after the match. Escape the again and it works

See this answer.

Does this work?

"this doesn't work".gsub /'/, '\\'' => "this doesn\'t work"

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...