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

I need to split phrase to words, but ignore text within defined tag For example

Input

<i>111 111 111</i> 222 333 444 <i>555 666</i> 888 999 <i>000 111</i>

Output

<i>111 111 111</i>
222
333
444
<i>555 666</i>
888
999
<i>000 111</i>
share|improve this question
what do you mean be "defined tag" - any tag? – Chronial Aug 15 '11 at 14:32
1  
Use DOM instead. Look for text nodes which have no child nodes and split the contents. – Marc B Aug 15 '11 at 14:35
3  
What language are you using? Are all your examples that simple (i.e. no nested tags, no xml comments, no CDATA blocks) – Jens Aug 15 '11 at 14:46
I use .NET and if somebody give me example with Regex.Split it will really usefull – Александр Махин Aug 16 '11 at 9:09

2 Answers

Try this:

/<i>[\d\s]*<\/i>|\d+/g

Explanation:

  • For strings within <i> tags, both whitespace and numerals will be included in the match.
  • Strings not within the tags cannot include whitespace, so they'll be restricted to numeric strings.
  • The | alternator is short-circuiting, so it makes sure <i>111 222 333</i> will be treated as a single unit, not split off into 111, 222, and 333.

Tested on Regexr here, works correctly: http://regexr.com?2uf6j

share|improve this answer

How about splitting on a space only if the next < that follows is not followed by a slash?

>>> import re
>>> test = "<i>111 111 111</i> 222 333 444 <i>555 666</i> 888 999 <i>000 111</i>"
>>> split = re.compile(" (?![^<]*</)")
>>> split.split(test)
['<i>111 111 111</i>', '222', '333', '444', '<i>555 666</i>', '888', '999', '<i>000 111</i>']

This will fail if tags can be nested, though (which is a reason why regex is not a good fit for this kind of problem).

share|improve this answer

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.