up vote -4 down vote favorite
share [g+] share [fb]

What I need is something like this:

/<[\w\d]+ ([\w\d]+\=[w\d])+\/>/

Something that would match several attribute key/value pairs. Is that possible?

link|improve this question

6  
<![CDATA[ <I am="not" xml="tag"/> ]]> <!-- <me:neither /> --> – KennyTM Mar 11 '10 at 16:50
5  
2  
Why do you think it's possible to use a regular expression to parse something that is not regular? – Ether Mar 12 '10 at 0:07
2  
@Ether: Actually you still can parse XML with Perl regular expressions, since Perl regular expressions are not regular either ;) But it is a task to accomplish. – codeholic Mar 12 '10 at 15:12
feedback

2 Answers

up vote 10 down vote accepted

You'll have much more succes using an XML parser, for example, XML::Parser. Parsing XML using regular expressions is very difficult (impossible?) and unless your use case is trivial, a proper XML parser is the reliable solution.

link|improve this answer
4  
Impossible without a question mark. XML is not a regular language. Of course, some implementations of 'regular expressions' actually match non-regular languages, but that's another matter. – High Performance Mark Mar 11 '10 at 17:56
feedback

It may be possible for a very limited range of valid XML. If you are trying to parse XML, I strongly recommend that you use a parser, rather than try to use regular expressions. XML::Twig is a good general-purpose parser available from CPAN.

For further reading, see also: XML parsing vs Regular expressions

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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