Node.js 解析字符串中的数字
给定一个像这样的字符串:
Recipient: [email protected]
Action: failed
Status: 5.0.0 (permanent failure)
Diagnostic: No
仅当它始终位于 Status: 之后时,如何才能获得“5.0.0”和“永久故障”? ?
谢谢
Given a string like:
Recipient: [email protected]
Action: failed
Status: 5.0.0 (permanent failure)
Diagnostic: No
How do I get the "5.0.0" and "permanent failure" only if it's always after Status: ? ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望这些值中包含其他字符,则应该扩展这些: [0-9\.]、[a-zA-Z ] 选择器。目前,第一个需要数字和点,第二个需要字符和空格
You should extend these: [0-9\.], [a-zA-Z ] selectors if you expect other characters in these values. For now the first one expects numbers and dots, the second characters and spaces