是否可以使用 RegEx 从字符串中获取括号内的数字?例如,我选择的内容如下:
<select class="selectoption">
<option value="1">no numbers</option>
<option value="2">3 (+110.0 грн.)</option>
<option value="3">Blabla (+95.5 грн.)</option>
</select>
当用户选择带括号的选项(110 或 95.5)时,我只需要获取数字。
我现在有:
$('.selectoption').change(function() {
if ( $("select option:selected").text().match(/\(.*\)/).length ){}
alert (
$("select option:selected").text().match(/\(.*\)/)
);
end
});
但它返回(+110.0 грн.)
:(