只需在這裏稍微推一下。我有一個像找到字符串後的所有字符串出現
xyz buildinfo app_id="12345" asf
sfsdf buildinfo app_id="12346" wefwef
...
我需要得到以下APP_ID =一個字符串數組數與數據的文件。下面的代碼給我所有的匹配,我可以得到計數(Regex.Matches(text,searchPattern).Count)。但我需要將實際項目放入數組中。
string searchPattern = @"app_id=(\d+)";
var z = Regex.Matches(text, searchPattern);
'新的正則表達式(是searchPattern).Match(文本).Captures'(或'.Groups') – knittl 2014-09-02 15:50:52
你是否絕對需要正則表達式,或者你會同樣使用字符串方法? – terrybozzio 2014-09-02 16:06:21