2016-06-19 18 views

答えて

1

String#matchの方法では、グループ正規表現をキャプチャします。

console.log(
 
    "67% (6/9)".match(/\/(\d+)\)/)[1] 
 
);

Regex explanation here.

Regular expression visualization


また、あなたは

ここ String#splitメソッドを使用することができます

console.log(
 
    "67% (6/9)".split('/')[1].split(')')[0] 
 
);

関連する問題