How can I get the content in between "{ }" in Ruby? For example,
I love {you}
How can I fetch the element "you"? If I want to replace the content, say change "you" to "her", how should I do that? Probably using gsub?
|
How can I get the content in between "{ }" in Ruby? For example,
How can I fetch the element "you"? If I want to replace the content, say change "you" to "her", how should I do that? Probably using |
||||
|
|
|
Regular expressions are the way to go with gsub. Something like:
|
|||
|
|
|
|||
|
|
|
The simple way to get the content from the inside of the
That basically says, "grab everything inside a leading Replacing the target string can be done various ways:
A simple You could use a regex instead of the string:
If there are multiple occurrences of the target string then use a bit more text to locate it. This uses the wrapping delimiters to locate it, and then replaces them also. There are other ways to do this, but I'd do it like:
Alex Wayne's answer came close but didn't go all the way: Ruby's
That's really powerful when you want to take a template and quickly replace all the placeholders in it. |
||||
|
|
|
why not use some template engine like: https://github.com/defunkt/mustache note that ruby can do this for
and finally do not forget to check existing ruby template engines - do not reinvent the wheel! |
|||||
|
|
You can always use .index:
The last line just says get 'a' from right after the first occurrence of '{' and right before the first occurrence of '}'. It is important to note, however, that this will only get the text between the first occurrences of {}. So it will work for your above example. I would use indexing also to add something new between the {}s. That would look something like:
Again this only works for the first occurrence of '{' and '}'. Michael G. |
|||
|
|