我有以下文本格式的文件:簡單的regex - (集團用C匹配++)
Blah blah Blahhh<TAB SPACE -(/t character)>1234<TAB SPACE -(/t character)>some other crap blah
文本可能看起來像:
Saturday Evening 1234 Beautiful
我現在用的是<regex>
庫,並我想使用捕獲組來捕獲「1234」。
我想:
"\\t(\\d+)\\t"
但是,當我打印結果,它顯示了「\ t」的字符與數字一起。有任何想法嗎?
測試regexe在線:HTTP://www.regexplanet。 COM /高級/ JAVA/index.html的 – SChepurin