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.
有一些导入的数据给我留下了一些无效的字符符号,例如:
咖啡厅。</p>
只是想知道在字符串内容中查找/替换这些内容的最简单方法是什么?
这可能会对您有所帮助。结果取决于您要保留或删除的文本类型...
MSDN:如何:从字符串中去除无效字符。
这将替换每个非字母数字字符(保持标点符号不变):
string result = Regex.Replace(textBox1.Text, @"[^\w(\p{P}) ]+", "");
(\p{P})如果您只想要字母和数字并且想要从表达式中清除标点符号。
(\p{P})