Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような値を持つ文字列があります。
share__43 share__153 share share_section
43 や 153 などの整数値を取得するにはどうすればよいですか?
これを試して
var regex = new RegExp(/([0-9]+)/g); var test = "share__43 share__153 share share_section"; var match = regex.exec(test); alert('Found: ' + match[1]);
フィドル