error 027: invalid character constant
HartyChock opened this issue · 1 comments
HartyChock commented
Hello!,
how can I evade this issue? It is a correct regex.
error 027: invalid character constant
Line: ReplaceString(info, "\{[0-9A-F]{6}\}", " ", infoa);
Best regards and thanks for your time.
xunder-matth commented
Escape \
.
ReplaceString(info, "\\{[0-9A-F]{6}\\}", " ", infoa);