vote up 2 vote down star
1

Hi, unfortunately despite having tried to learn regex at least one time a year for as many years as I can remember, I always forget as I use them so infrequently.This year my new years resolution is to not try and learn regex again - So this year to save me from tears I'll give it to stackoverflow. (Last Christmas remix).

So basically I want to pass in a string in this format "{getThis}", and be returned the string "getThis". Could anyone be of assistance in helping to stick to my new years resolution?

Regards,

Chris


Related (but not identical) questions on stackoverflow:

and probably others.

flag

64% accept rate

4 Answers

vote up 7 vote down check

If your string will always be of that format, a regex is overkill:

>>> var g='{getThis}';
>>> g.substring(1,g.length-1)
"getThis"
link|flag
An example of excellent requirements analysis. The customer says "give me this solution" and you heard "give me a solution to this problem". – Darron Jan 5 at 14:43
not to be nitpicky but shouldnt the code be g.substring(1,g.length-2) – Ori Jun 9 at 13:10
Actually, it shouldn't. substring() is 0-based, whereas the length is 1-based, and substring()'s second argument is which position in the original string to stop at, rather than how long the string returned should be. Try it for yourself, and then try with 5 as the first argument. (The above I actually just copied and pasted from Firebug, to make sure it was initially correct.) – Kev Jun 9 at 18:06
vote up 1 vote down
/\{([^}]+)\}/

/        -    delimiter
\{      -    opening literal brace escaped because it is a special character used for quatifiers eg {2,3}
(        -    start capturing
[^}]  -    character class consisting of
    ^      -    not
    }       -    a closing brace (no escaping necessary because special characters in a character class are different)

+      -    one or more of the character class
)       -     end capturing
\}     -     the closing literal brace
/       -     delimiter
link|flag
I was looking to find if curly brackets were special chars in java regexp and this helped alot. 10x. – Amir Arad Sep 14 at 12:30
vote up -1 vote down
if ($string =~ m/\{(\w*)\}/)
{
   print $1
}

This should print the value you want in perl. I haven't checked it myself, so you'll have to take it on faith. If you are using something with a regex compiler type of design (Python, Java, C#, C++ with boost), you will want to get your match object and then get group 0 if a match exists. I can't really get more specific than that without knowing the language.

link|flag
vote up 9 vote down

Try

/{(.*?)}/

That means, match any character between { and }, but don't be greedy - match the shortest string which ends with } (the ? stops * being greedy). The parentheses let you extract the matched portion.

Another way would be

/{([^}]*)}/

This matches any character except a } char (another way of not being greedy)

link|flag
Odd to get a downvote some 9 months later... – Paul Dixon Sep 23 at 16:31
Yeah, someone downvoted mine too. (?) – Kev Sep 23 at 18:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.