vote up 5 vote down star
3

I'm having trouble writing a regular expression (suitable for PHP's preg_match()) that will parse keyword='value' pairs regardless of whether the <value> string is enclosed in single or double quotes. IOW in both of the following cases I need to get the <name> and <value> where the <value> string may contain the non-enclosing type of quotes:

name="value"
name='value'
flag

2 Answers

vote up 7 vote down check

In Perl this is a regex that would work. It first matched for the start of the line then matches for one or more non = characters and sets them to $1. Next it looks for the = then the a non paren with a choice of matching for " or ' and sets that to $2.

/^([^=]+)=(?:"([^"]+)"|'([^']+)')$/

If you wanted it to match blank expressions like.

This=""

Replace the last two + with an * Otherwise this should work

Edit As mentioned in the comments. Doug used...

 /^\s?([^=]+)\s?=\s?("([^"]+)"|\'([^\']+)\')\s?/

This will match one optional white space on ether end of the input or value and he has removed the end of line marker.

link|flag
2  
it will match name='asd" with a double quote at the and, that's not correct. – Andrea Ambu Jun 7 at 15:55
1  
No longer matches non matching quote sets. – Copas Jun 7 at 16:02
argh! you updated it before my response :P – Andrea Ambu Jun 7 at 16:06
1  
@Doug - It is a honor to be corrected by the publishers of IT Conversations :). Thanks corrected. – Copas Jun 7 at 16:34
2  
Here's the final version I used. It's escaped for single quotes and is more forgiving for whitespace. Thanks for the help! /^\s?([^=]+)\s?=\s?("([^"]+)"|\'([^\']+)\')\s?/ – Doug Kaye Jun 7 at 16:34
show 2 more comments
vote up 2 vote down
/^(\w+?)=(['"])(\w+?)\2$/

Which will place the key in $1 and the value in $3.

link|flag

Your Answer

Get an OpenID
or

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