从JS字符串中获取值

时间:2013-01-31 04:34:10

标签: javascript

我有一个字符串,例如“hello word:abc there”

我需要在值'word:'后得到值,所以在上面的例子中答案是'abc'。

“abc xyz word:2 hhh yyy”='2'

2 个答案:

答案 0 :(得分:1)

一种方法是使用regular expressions

答案 1 :(得分:0)

使用此正则表达式:

var yourString="hello word:1235 tsfa";
var patt1=/:(\w*)/;
alert(yourString.match(patt1)[1]);

工作jsFiddle