Friday 2 December 2016

javascript - Regular Expression to remove Div tags

I have a div tag, nested within many span and div tags.



Now I want a regular expression in JavaScript which will strip the div tags and get the content inside it.

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...