gpt4 book ai didi

c# - 匹配字母数字和空格的正则表达式

转载 作者:IT王子 更新时间:2023-10-29 03:52:22 25 4
gpt4 key购买 nike

我在这里做错了什么?

string q = "john s!";
string clean = Regex.Replace(q, @"([^a-zA-Z0-9]|^\s)", string.Empty);
// clean == "johns". I want "john s";

最佳答案

仅供引用

string clean = Regex.Replace(q, @"[^a-zA-Z0-9\s]", string.Empty);

实际上会更好

string clean = Regex.Replace(q, @"[^\w\s]", string.Empty);

关于c# - 匹配字母数字和空格的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/181356/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com