I have
Input:
NISHA =\455
Output:
NISHA = 455
I want to remove \ from output. I tried to use command sed "s/[\]//g" P but it is not working and it flags an error:
character found after backslash is not meaningful
I have
Input:
NISHA =\455
Output:
NISHA = 455
I want to remove \ from output. I tried to use command sed "s/[\]//g" P but it is not working and it flags an error:
character found after backslash is not meaningful