Replace the comma between two selected words using regex replacement
-
I want to replace the comma (,) between two selected words. here is the input
test normal content [ABC]new, ball, test[/ABC]
output
test normal content [ABC]new[/ABC][ABC] ball[/ABC][ABC] test[/ABC]
can someone please guide me on how to do it?
-
If you know about the existence of regex, why is this hard?
Find:
,
Replace:[/ABC][ABC]
Search mode: Regular expression -
@Alan-Kilborn i want to replace comma only inside [ABC] [/ABC]. I could not able to edit the first post.
input
test, normal content [ABC]new, ball, test[/ABC]
Output
test, normal content [ABC]new[/ABC][ABC] ball[/ABC][ABC] test[/ABC]
sorry I did not explain properly in my first post.
-
@voska7 said in Replace the comma between two selected words using regex replacement:
i want to replace comma only inside [ABC] [/ABC]
If you go to the FAQ on this site…
And from there go HERE…
One of the choices there will take you HERE…which seems to be what you need.