我正在尝试使用正则表达式来解析以下输入中的值903001
, :343001
343491
"contact_value":"903001" other random
"contact_value":"343001" random information
"contact_value":"343491" more random
我在 c# 中使用了以下内容,但它返回“contact_value”:“903001”
MatchCollection numMatch = Regex.Matches(input, @"contact_value\"":\"".*"\""");
提前致谢