Find/Replace regex to remove html tags

后端 未结 5 863
别那么骄傲
别那么骄傲 2021-02-01 22:17

Using find and replace, what regex would remove the tags surrounding something like this:

5条回答
  •  没有蜡笔的小新
    2021-02-01 23:17

    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 :

提交回复
热议问题