-2

以前不能使用正则表达式,现在我需要获取字符串的一部分。

var str1 = "Wi-Fi: 6.3 ounces (180 grams); Wi-Fi + 3G: 6.6 oz (188 g)Actual size and weight may vary by configuration and manufacturing process";

我只需要从这个字符串中获取这个来自范围的数字 - 180(这里可以是不同的数字,并且字符串可以有其他 gext,但总是应该从范围中获取数字)。

这是我的代码:

var weight = $(data, "body").find("td:contains('Weight')").siblings().text();
        var regexp =  /\b(\d*\.?\d?)\sounces/im;
        var found = weight.replace(regexp, "");
        if (weight && weight != "") {
            return found;
        }

如何实现?我看到了一些例子,但结果一直不是我想要的。

谢谢

4

1 回答 1

0

已解决,使用下一个代码:

var weight = $(data, "body").find("td:contains('Weight')").siblings().text();

var regexp =  /\b(\d*\.?\d?)\sounces/im;
var found = weight.match(regexp);
if (weight && weight != "") {
    return found[0];
}
于 2015-11-26T10:33:04.317 回答