标签: java regex preg-match
我正在尝试在Java中找到页面上特定货币符号的价格,它适用于" $"签好了。但有些页面上有英镑符号的unicode符号(\ u00a3)。像这样举例如:
\u00a3139.99
在以下示例中,如何适应unicode磅符号的匹配?而不是$我需要寻找\ u00a3但它不起作用......
match = RegexValidator.pregMatch("<td class=\"tdprice\">\\$([^<]+)</td>", tr);
谢谢!