我有一个包含许多字符的字符串。我想删除 A-Za-z 和空格,剩下的就剩下了。最好的方法是什么?
这是我尝试过的
presaleEstimateHigh = Regex.Replace(presaleEstimateHigh, @"[A-Za-z]", string.Empty);
但我还需要删除空格。
你可以使用\s。
例如:
presaleEstimateHigh = Regex.Replace(presaleEstimateHigh, @"[A-Za-z\s]", string.Empty);
您的正则表达式很好,除了空格。这应该有效:
string result = Regex.Replace(myString, @"[a-zA-Z\s]+", string.Empty);
没有正则表达式:
var chars = str.Where(c => !char.IsLetter(c) && !char.IsWhitespace(c)).ToArray();
var rest = new string(chars);
你几乎成功了。使用这个正则表达式
[a-zA-Z ]+
它只包含空格。添加 a+
可以提高效率,因为可以一次(内部)替换整个系列的字符。