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はなしであってはなりませんが、そうです。私は何を間違っていますか?助けてくれてありがとう。
auを前に置いて、検索文字列をユニコードにする必要があります
m = re.search(u'\u00B2',text)