如何提取someXml?在兩個字符串之間提取xml作爲字符串
frame 0
push 'this'
getVariable
push 'g_data_1343488'
push '
someXml'
setMember
end // of frame 0
我試圖用正則表達式,但我不成功是:
foreach (var match in Regex.Matches(file, @"(?<=push ').*(?=')"))
問題與這一個:我不希望有爲例「g_data_1343488」或「本」被抓住。
所以要最後「推」和「setMember」之間的文本? –
是的!我想抓住一些XML(而不是一些XML) – graph1ZzLle