regex - Find string by regular expression -
I need a regular expression to remove some stars.
The search might be like the string:
ANY_STRING (string1) This string is searching for ANY_STRING (string2) string 2
(string1) This string is searching for string 1 (string 2), string 2
Anyone looking for ideas?
Thank you.
Replace all new lines with space, then split the string with separator ANY_STRING
.
Comments
Post a Comment