Python清理字符串中的不可见字符 Wuxf 收录于 学习笔记 2024-11-13 约 52 字 预计阅读 1 分钟 目录 需要处理一些字符串中的 \u202d 这样的特殊不可见的字符,网上试了一些方法,最好用的还是下面这个: new_str=''.join(c for c in input_str if c.isprintable()) 😀 Please enable JavaScript to view the comments powered by Disqus.