1VALID_IDENTIFIER_CHARACTERS =
"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_"
5 For each character in the string, if it is a valid kbnf identifier character,
6 add it to the result. Otherwise, add its Unicode code point to the result.
9 s: The string to escape.
15 >>> escape_identifier("hello")
17 >>> escape_identifier("hello_world")
19 >>> escape_identifier("hello world")
24 if c
in VALID_IDENTIFIER_CHARACTERS:
27 result.append(f
"u{ord(c):x}")
28 return "".join(result)
32 Convert a string to a kbnf string.
35 s: The string to convert.
40 return repr(f
"\"{s}\"")