Monday 18 February 2019

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

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...