我从json那里得到了android url
"https:\/\/play.google.com\/store\/apps\/details?id=com.lego.starwars.thenewyodachronicles&hl=en"
现在我只想要来自以上网址的套餐名称: - > " com.lego.starwars.thenewyodachronicles"
我如何使用javascipt
中的正则表达式解决它提前Thanx :)
答案 0 :(得分:1)
你需要使用前瞻。
[^=&]+(?=&)
代码:
> "https://play.google.com/store/apps/details?id=com.lego.starwars.thenewyodachronicles&hl=en".match(/[^=&]+(?=&)/g)
[ 'com.lego.starwars.thenewyodachronicles' ]
答案 1 :(得分:1)