gpt4 book ai didi

javascript - 在javascript中解析字符串

转载 作者:数据小太阳 更新时间:2023-10-29 06:03:14 27 4
gpt4 key购买 nike

我如何在 javascript 上解析这个字符串,

var string = "http://www.facebook.com/photo.php?fbid=322916384419110&set=a.265956512115091.68575.100001022542275&type=1";

我只想得到字符串上的“265956512115091”。我以某种方式解析了这个字符串,但仍然不足以得到我想要的。

我的代码:

var newstring = string.match(/set=[^ ]+/)[0]; 

返回:

a.265956512115091.68575.100001022542275&type=1

最佳答案

try this : 

var g=string.match(/set=[a-z]\.([^.]+)/);

g[1] will have the value

http://jsbin.com/anuhog/edit#source

关于javascript - 在javascript中解析字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9045548/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com