标签: regex angular
我需要获取链接中的id。
id
https://suchen.mobile.de/fahrzeuge/details.html?id=252619802&damageUnrepaired=NO_DAMAGE_UNREPAIRED
到目前为止我的正则表达式是id\=[0-9]*,但它也过滤了"id="
id\=[0-9]*
"id="
我可以做另一个在最后一场比赛中搜索数字的正则表达式,但还有其他选项吗?
答案 0 :(得分:0)
如果您使用例如javascript:
id=(\d+)
如果支持positive lookbehind,请使用regex (?<=id=)\d+。
(?<=id=)\d+