使用正则表达式提取字符串的特定部分

时间:2011-11-04 10:51:53

标签: jquery-ui

javascript:checkForSave('./viewSectorDefPage.htm');,viewSectorDefPage,htm');

从这个字符串我想通过正则表达式只提取viewSectorDefPage部分的值,我尝试过多个例子但是无法得到它,任何帮助都会很有用,

1 个答案:

答案 0 :(得分:0)

首次尝试:

result = "javascript:checkForSave('./viewSectorDefPage.htm');,viewSectorDefPage,htm');".match(",(.*),")

这为您提供了result[1]

中的解决方案