Tuesday 29 March 2016

regex - Regular expression for remove html links








i need a regular expression to strip html tags , here is sample:



 link 


should be converted to



 link

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...