katursis/Pawn.Regex

error 027: invalid character constant

HartyChock opened this issue · 1 comments

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.

Escape \.

ReplaceString(info, "\\{[0-9A-F]{6}\\}", " ", infoa);