Process strings inside txt file is the matter. How should I handle following string inside txt file:
'I am 'Vahid Sabet' in Stackoverflow'
The string has quotes inside another quotes and I need remove or change inside one. How can I get output:
'I am Vahid Sabet in Stackoverflow'
Or
'I am "Vahid Sabet" in Stackoverflow'
Note: this string is inside txt file and I need to get output according above. The string doesn't have any escaped and is exactly what I've explained.
My text is huge in size and performance is key in processing. Thanks in advanced.