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.
我有一个包含很多 I²C 的文本,我想更改超级 2。根据我所阅读的内容,这应该会产生匹配:
m = re.search('\u00B2',text)
其中 text 是带有文本的字符串。M 不应该是 none,但它是。我究竟做错了什么?谢谢你的帮助。
您需要通过将 au 放在搜索字符串前面来使其成为 unicode
m = re.search(u'\u00B2',text)