Could you please tell me how can one escape an apostrophe.
I need it to process non apostrophe characters through file operations so when I encounter an apostrophe(') I can’t just give ch!='''. It doesn’t work. Could you please tell me the right format. Thank you..:)
Use
\', for example:\'is an escape sequence for the apostrophe.Google for “escape sequence” to know more about it.