RegEx matching HTML tags and extracting text

后端 未结 5 1449
生来不讨喜
生来不讨喜 2020-12-17 01:45

I have a string of test like this:

hey

I want to use a RegEx to modify the text between the \"customtag\

5条回答
  •  眼角桃花
    2020-12-17 01:56

    I wouldn't use regex either for this, but if you must this expression should work: (.+?)

提交回复
热议问题