Hi Friends,
My requirement is i need to replace multiple special characters in a string and match the output with the desired output using regular expressions.
Example:
Input=Command%run*RONA.
% is replaced with .
- is replaced with .*
. is replaced with .
output: Command.run.*RONA.
Now the output should match with desired output=Command run on RONA.
Thanks,
Chandini.