javascriptで正規表現で抜き出したい
JavaScriptの正規表現で文字列を抜き出す「グループ化」: 小粋空間
code:js
var foo = 'abc123defg';
var bar = foo.match(/\d+/);
// -> 123