I have a text, in which only <b> and </b> has been used.for example<b>abcd efg-123</b> . Can can I extract the string between these tags? also I need to extract 3 words before and after this chunk of <b>abcd efg-123</b> string.
How can I do that? what would be the suitable regular expression for this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||
|
|
Handles tags inside the
This should work, and perform well, but if it gets any more advanced then this you should consider using a html parser. |
||||
|
this will get what's in between the tags,
|
|||
|
|
|
This is actually a very dumb version and doesn't allow nested tags.
|
||||
|
|
|
You should not use regexes for HTML parsing. That way madness lies. The above-linked article actually provides a regex for your problem -- but don't use it. |
|||
|
|