「hello word:abc there」などの文字列があります。
値「word:」の後に値を取得する必要があるため、上記の場合、答えは「abc」になります。
"abc xyz word:2 hhh yyy" = '2'
等
「hello word:abc there」などの文字列があります。
値「word:」の後に値を取得する必要があるため、上記の場合、答えは「abc」になります。
"abc xyz word:2 hhh yyy" = '2'
等
1 つの方法は、正規表現を使用することです。
次の正規表現を使用します。
var yourString="hello word:1235 tsfa";
var patt1=/:(\w*)/;
alert(yourString.match(patt1)[1]);
作業中のjsFiddle