Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何允许 128-165 的 ASCII 字符代码包含在正则表达式中?这包括包含波浪号和非英语键盘字符的字母?
特殊字符可在此链接中找到
这如何在 python 和/或 javascript 中实现?
您可以对所需的 unicode 代码点使用等效的十六进制代码来在字符类中创建范围:
[\x80-\xA5] 128 -> U+0080 -> \x80 165 -> U+00A5 -> \xA5