Using find and replace, what regex would remove the tags surrounding something like this:
I have done by using following regular expression:
Find this : <.*?>|
and
replace with : \r\n (this for new line)
By using this regular expression (<.*?>|) we can easily find value between your HTML tags like below:
I have input:
12345
I need to find values between options like 1,2,3,4,5
and got below output :