我正在寻找一种方法来搜索字符串以获得完全匹配或完整的单词匹配. RegEx.Match和RegEx.IsMatch似乎没有让我到达我想要的地方.请考虑以下情形:
namespace test { class Program { static void Main(string[] args) { string str = "SUBTOTAL 34.37 TAX TOTAL 37.43"; int indx = str.IndexOf("TOTAL"); string amount = str.Substring(indx + "TOTAL".Length,10); string strAmount = Regex.Replace(amount,"[^.0-9]",""); Console.WriteLine(strAmount); Console.WriteLine("Press any key to continue..."); Console.ReadKey(); } } }
// 34.37 // Press any key to continue...
问题是,我不想要SUBTOTAL,但是IndexOf找到第一次出现的单词TOTAL,它在SUBTOTAL中,然后产生不正确的值34.37.
所以问题是,有没有办法强制IndexOf只找到一个完全匹配,或者是否有另一种方法强制完全匹配整个单词,以便我可以找到该完全匹配的索引,然后用它执行一些有用的功能.据我所知,RegEx.IsMatch和RegEx.Match只是布尔搜索.在这种情况下,仅知道存在完全匹配是不够的.我需要知道它在字符串中的位置.
任何意见,将不胜感激.
解决方法
你可以使用Regex
string str = "SUBTOTAL 34.37 TAX TOTAL 37.43"; var indx = Regex.Match(str,@"\WTOTAL\W").Index; // will be 18