使用正则表达式提取数字
我想从中提取数字“123”:
<div class="f_right" style="padding-top:5px;">123</div>
我应该使用什么正则表达式?如何只提取数字而不用包装
?I want to extract the number '123' from this:
<div class="f_right" style="padding-top:5px;">123</div>
What regular expression should I use? How can I extract just the number, without the wrapping <div>
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@dario是对的,但如果你想这样做,这可能会起作用:
对于雅虎管道,它应该是这样的。
$1
将是您的比赛@dario is right but if you want to do it this might work:
For yahoo pipes it should be like this.
$1
will be your match