I have a div tag, nested with many span and div tags inside it.
now i want a regular expression in javascript which will strip the div and the content inside it.
thanks in advance..
|
I have a div tag, nested with many span and div tags inside it. now i want a regular expression in javascript which will strip the div and the content inside it. thanks in advance.. |
|||||||||
|
|
You want to remove a First things first; learn the DOM!
... will remove the
|
|||
|
|
|
Regular expressions can't handle nesting, at least JavaScript regexes can't (and those that can, like .NET and PCRE, aren't easy to handle). This could only work if there is just one outermost
will match everything from the very first |
|||
|
|
|
found solution replace(/]?>[\s\S]?<\/div>/gi, "") Thanks.. |
|||
|
|
This is not possible using only regular expressions. Using something like jquery is much easier. |
|||||
|