instance=hostname1, topic=“AB_CD_EF_12345_ZY_XW_001_000001”
instance=hostname2, topic=“AB_CD_EF_1345_ZY_XW_001_00001”
instance=hostname1, topic=“AB_CD_EF_1235_ZY_XW_001_000001”
instance=hostname2, topic=“AB_CD_EF_GH_4567_ZY_XW_01_000001”
instance=hostname1, topic=“AB_CD_EF_35678_ZY_XW_001_00001”
instance=hostname2, topic=“AB_CD_EF_56789_ZY_XW_001_000001”
我尝试了以下详细信息,它们可以很好地作为单独的查询:
/*.topic="AB_CD_EF_([^_]+).*/
12345
1345
1235
/*.topic="AB_CD_EF_GH_([^_]+).*/
4567
35678
56789
我需要一个正则表达式,它可以给我:
12345
1345
1235
4567
35678
56789
请帮忙,谢谢