到目前为止,我有这个
lastUpdatedTimestamp":.+?:..
示例测试字符串
{"availableSpots":3,"trend":"STATIC","lastUpdatedTimestamp":"2018-12-21T14:50:03Z"},"probability":[{}]},
我想要50
答案 0 :(得分:2)
对要提取的部分使用capturing group:
lastUpdatedTimestamp":.+?:(..)
然后使用工具的机制获取第一个捕获组的值。
如果您的工具支持lookbehind,则可以使用。由于大多数后向实现都需要固定的后向大小,因此您需要删除量词+?
,并且-例如-使用符号的确切数量,即:
(?<=lastUpdatedTimestamp":.{14}:)..
答案 1 :(得分:1)