如何从字符串c#中获取子字符串的特定模式?

时间:2013-07-19 06:08:52

标签: string substring string-matching string-math

如何从c#代码中的字符串中获取子字符串的特定模式?

像这样的输入字符串=> “数字”:123,“对象”:“a”:“b”,“d”,“e”:“f”2233“”“”“王”

字符串数组中的子字符串as => “数” “宾语” “一个” “B” “d” “E” “F” “王”

1 个答案:

答案 0 :(得分:0)

string substring = Regex.Replace(inpustring,“(”[0-9] + [\“] {5} |:\”[0-9] + \“,)| [:,]”, “”);