tooltipHtml - 从谷歌地图调用中提取
“ (2.1\x26#160;mi / 7 分钟)”
我有上面的字符串,我只需要获取距离和时间。我将如何使用 RegexKitLite 脚本来执行此操作?理想情况下,以下是我正在寻找的:
时间 = 7 分钟 距离 = 2.1 英里
谢谢
" (2.1\x26#160;mi / 7 mins)"
I have the above string and I need to get to the distance and time only. How would I go about doing this using the RegexKitLite script? Ideally, the below is what I'm looking for:
time = 7 mins
distance = 2.1 miles
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不使用 RegexKitLite 脚本,但我这样做了:
NSString* tooltipHtml = [apiResponse stringByMatching:@"tooltipHtml:\\"([^\\"]*)\\"" capture:1L];
Not with RegexKitLite script but I've done it this way:
NSString* tooltipHtml = [apiResponse stringByMatching:@"tooltipHtml:\\"([^\\"]*)\\"" capture:1L];