My string contain a lot of HTML entities, like this
"Hello <everybody> there"
And I want to split it by HTML entities into this :
Hello
everybody
there
Can anybody suggest me a way to do this please? May be using Regex?
|
My string contain a lot of HTML entities, like this
And I want to split it by HTML entities into this :
Can anybody suggest me a way to do this please? May be using Regex? |
|||||
|
|
It looks like you can just split on If you can have multiple delimiters in a row, and you don't want the empty strings between them, just use If you can have delimiters in the beginning or front of the string, and you don't want them the empty strings caused by them, then just trim them away before you split. ExampleHere's a snippet to demonstrate the above ideas (see also on ideone.com):
|
|||||||
|
|
|
|||||||
|
and cut the last and first result:
|
|||
|
|
The regex is: Matches entities as |
|||
|
|