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.
我试图使用正则表达式删除文本之间的空格。下面的输入字符串呈现在网页上。
string inputString = "あさ9:30 - よる10:00"; Regex Spaces = new Regex(@"\s+"); string s = Spaces.Replace(inputString, string.Empty);
正则表达式模式不适用于输入字符串。9:30 和 10:00 之间的空间看起来不像是空白。不知道是什么样的空间。
有什么建议么?
你有没有试过做一个简单的replace(" ","")?当正则表达式不起作用时,这通常对我有用。
replace(" ","")