如何根据键正则表达式查找值

Posted

技术标签:

【中文标题】如何根据键正则表达式查找值【英文标题】:How to find value based on key Regex 【发布时间】:2021-12-12 09:07:46 【问题描述】:

我想使用正则表达式根据键提取值,但找不到表达式。

我在互联网和 *** 上尝试了很多可用的表达式,但没有任何效果。 这是我想做的一个例子-

给定字符串-

"summaryId":"x436a218-61703d00-15180-6","calendarDate":"2021-10-21","activityType":"WALKING","activeKilocalories":119,"bmrKilocalories":2283,"steps":3972,"distanceInMeters":2919.0,"durationInSeconds":86400,"activeTimeInSeconds":2786,"startTimeInSeconds":1634745600,"startTimeOffsetInSeconds":28800,"moderateIntensityDurationInSeconds":0,"vigorousIntensityDurationInSeconds":0,"stepsGoal":7500,"intensityDurationGoalInSeconds":9000,"floorsClimbedGoal":10

我想提取“steps”键的值,即 3972(对于这个例子)

【问题讨论】:

【参考方案1】:

您可以在此处使用lookbehind:

(?<="steps":)[^,]+

这是一个demo,表明正则表达式正在运行。

【讨论】:

以上是关于如何根据键正则表达式查找值的主要内容,如果未能解决你的问题,请参考以下文章

字典键上的正则表达式匹配

如何根据正则表达式查询将是或否值插入标志列

用于在Yaml文件中查找键值的正则表达式

数据库笔记-SQL过滤(LIKE&正则表达式)

正则表达式

使用正则表达式查找哈希表/字典/地图