I have a string like,
(Range:(>"A" OR Range:(>"B" OR Range:(>"AB")
I need to convert it like,
(Range:(>"A") OR Range:(>"B") OR Range:(>"AB"))
please help me out how to identify it with regex.
Thanks in advance
|
I have a string like,
I need to convert it like,
please help me out how to identify it with regex. Thanks in advance |
|||
|
|
Do you mean something like this?
and replace with
See it here on Regexr It searches for |
|||
|
|
|
|
|||
|
|