标签: regex tcl
房间信息:
singleRoom (male): 0x3 singleRoom (famle): 0x0
我希望匹配输出的第二行:singleRoom (male): 0x3并获取十六进制的值0x3。如何在不使用“*”模式的情况下实现它?
singleRoom (male): 0x3
0x3
*
答案 0 :(得分:2)
^singleRoom \(male\): (0x[a-fA-F0-9]+)$