str = "Hello☺ World☹"
expected out put is "Hello:) World:("
I can do this str.gsub("☺", ":)").gsub("☹", ":(")
Is there any other way so that I can do this in a single function call. something like str.gsub(['s1', 's2'], ['r1', 'r2'])
|
You could do something like this:
There may be a more efficient solution, but this at least makes the code a bit cleaner |
|||||||||||||
|
|
In Ruby 1.9.2, Like this:
In Ruby 1.8.7, you would achieve the same with a block:
|
|||||||||||
|
|
|
Set up a mapping table:
Then build a regex:
And finally,
If you're stuck in 1.8 land, then:
You need the
and the quoting will be take care of for you. |
|||||||||||
|
|
Another simple way, and yet easy to read is the following:
|
|||
|
|
|
Late to the party but if you wanted to replace certain chars with one, you could use a regext string_to_replace.gsub(/_|,| /, '-') In this example, gsub is replacing underscores(_), commas (,) or with a dash (-) |
|||
|
|
String#trto do the trick, but the replacements being multiple charcters means I can't use that. – Andrew Grimm Nov 15 '11 at 22:38