C
Christof Nordiek
Hi,
i have to interpret a string in wich escape sequences are used to escape
special characters. How can I replace these sequences by the character they
replace?
Escapint rules are:
\ -> \\
: -> \:
" -> \"
so the characters \ : and " are escaped by \
I figured out a solution, but it fails where a douled backslash is followed
by another escape sequence.
Thanks
Christof
i have to interpret a string in wich escape sequences are used to escape
special characters. How can I replace these sequences by the character they
replace?
Escapint rules are:
\ -> \\
: -> \:
" -> \"
so the characters \ : and " are escaped by \
I figured out a solution, but it fails where a douled backslash is followed
by another escape sequence.
Thanks
Christof