Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

8 Answers

up vote 26 down vote accepted

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

>>> var g='{getThis}';
>>> g.substring(1,g.length-1)
"getThis"
share|improve this answer
30  
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 '09 at 14:43
3  
Substringing is one of those things that changes based on the language you work in. Javascript takes the index to stop at, PHP takes the length of the desired end result (unless it's negative, in which case it takes the number of characters to remove), C# is different again...nice and confusing. – jvenema Jan 26 '10 at 0:55
1  
...and Python just has slicing, which IMO is better than anything else :p. – Grant Paul Mar 3 '10 at 6:25
4  
Sweet, but not sure how that's a regular expression. Perhaps he was asking for regex, and I came here for the same answer.. sadly the answer has nothing to do with the question.. – baash05 Nov 30 '11 at 0:04
2  
@baash05, if you read the whole question, the OP didn't even want to learn regex, so I don't think it's the academic exercise you seem to be suggesting it was. – Kev Dec 7 '11 at 16:50
show 3 more comments

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)

share|improve this answer
Odd to get a downvote some 9 months later... – Paul Dixon Sep 23 '09 at 16:31
Yeah, someone downvoted mine too. (?) – Kev Sep 23 '09 at 18:42
Awesome, I was just looking for something like this! :) – Alex Jan 5 '10 at 3:24
added modifier q and was good to go. bedanke – Gutzofter Mar 26 '10 at 21:17
/\{([^}]+)\}/

/        - delimiter
\{       - opening literal brace escaped because it is a special character used for quantifiers 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
share|improve this answer
3  
I was looking to find if curly brackets were special chars in java regexp and this helped alot. 10x. – Amir Arad Sep 14 '09 at 12:30
@meouw, thank you so much – Gutzofter Mar 26 '10 at 20:43
Perfect! This was what I was looking for. – David Ryder Mar 14 '11 at 18:09
1  
This is awesome! Thanks for the step-by-step walk through. I was able to derive a solution I needed from your answer due to it's clarity and conciseness. Thanks! – josephvilla Jul 26 '12 at 15:59
@meouw sa = s.split("/\{([^}]+)\}/"); gives a compile error. illegal repetition, invalid escape character. – likejiujitsu Dec 26 '12 at 0:22
show 1 more comment

Here's a simple solution using javascript replace

var st = '{getThis}';

st = st.replace(/\{|\}/gi,''); // "getThis"

As the accepted answer above points out the original problem is easily solved with substring, but using replace can solve the more complicated use cases

If you have a string like "randomstring999[fieldname]" You use a slightly different pattern to get fieldname

var nameAttr = "randomstring999[fieldname]";

justName = nameAttr.replace(/.*\[|\]/gi,''); // "fieldname"
share|improve this answer

This one works in Textmate and it matches everything in a CSS file between the curly brackets.

\{(\s*?.*?)*?\}

selector {. . matches here including white space. . .}

If you want to further be able to return the content, then wrap it all in one more set of parentheses like so:

\{((\s*?.*?)*?)\}

and you can access the contents via $1.

This also works for functions, but I haven't tested it with nested curly brackets.

share|improve this answer

You want to use regex lookahead and lookbehind. This will give you only what's inside the curly braces:

(?<=\{).*(?=\})
share|improve this answer
There should be a backslash escaping the curly braces above. They got stripped out in my submission. – Robert Cesaric Nov 11 '10 at 12:28
Thanks, this helped me today. – ProfessionalAmateur Dec 22 '10 at 17:28
any disadvantages of this method? – Somatik May 11 '12 at 13:24
var re = /{(.*)}/;
var m = "{helloworld}".match(re);
if (m != null)
    console.log(m[0].replace(re, '$1'));

The simpler .replace(/.*{(.*)}.*/, '$1') unfortunately returns the entire string if the regex does not match. The above code snippet can more easily detect a match.

share|improve this answer

If you're using PHP and you have the following strings and want to extract the albumid.

http://picasaweb.google.com/data/entry/base/user/user/albumid/5241920314542926625?alt=rss&hl=en_US
http://picasaweb.google.com/data/entry/base/user/user/albumid/5200211976033472801?alt=rss&hl=en_US

preg_match('/albumid\/(.*?)\?/',$item->guid, $match);

$match would contain something like this.

Array ( [0] => albumid/5241920314542926625? [1] => 5241920314542926625 )
Array ( [0] => albumid/5200211976033472801? [1] => 5200211976033472801 ) 

So basically use match[1] to get the value that you need inside your delimiter.

share|improve this answer
no relevance to question – David Ryder Mar 14 '11 at 18:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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