我有以下字符串
string absoluteUri = "http://localhost/asdf1234?$asdf=1234&$skip=1234&skip=4321&$orderby=asdf"
在这个字符串中,我想用 '$skip=1244' 替换 '$skip=1234'
我尝试了以下正则表达式:
Regex.Replace(absoluteUri, @"$skip=\d+", "$skip=1244");
不幸的是,这不起作用。我究竟做错了什么?
输出应该是:
"http://localhost/asdf1234?$asdf=1234&$skip=1244&skip=4321&$orderby=asdf"