我想在.XML文件中解析時間表達式hh:mm:ss.xxx(小時,分鐘,秒,毫秒)。它應該是這個樣子的是:解析hh:mm:ss [.xxx]
<condition property="illegal-tc"> <matches pattern="the_pattern" string="${timeCode}"/> </condition>
我需要的是模式\ d {2}的否定:\ d {2}:\ d {2} \ d {3}。
我嘗試通過執行^ [\ d {2}:\ d {2}:\ d {2}。\ d {3}] $,但它無法正常工作。