Hi Colleagues,
I would like to ask you for advice regarding removing special characters. I tried to use Regex but because the special character is " // " then it is read as part of the formula.
I would like to remove "//" only when there is not text before/after/ Please see the example.
Current situation
1. // // text1 // text2
2. text1 //
3. text1 // // text2
Desire outcome
1. text 1 // text 2
2. text 1
3. text 1 // text 2
Thank you in advance,
Asia