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>
|
I need to split phrase to words, but ignore text within defined tag For example Input
Output
|
|||||||||||||
|
|
Try this:
Explanation:
Tested on Regexr here, works correctly: http://regexr.com?2uf6j |
||||
|
|
|
How about splitting on a space only if the next
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). |
|||
|
|