看板 C_and_CPP 關於我們 聯絡資訊
如題,最近開始練習正規表示式 我先在 regex101.com 上測試,才用 <regex> 寫到 c++ 裡面。 表示式:((^o)|(n)|(e$)){2,} 我對它的理解是:開頭為 o、含有 n 或結尾為 e 三個條件裡至少有兩個為真。例如,one, pne, onw, on, ne 都會 match 到,在網站上也是如此。 可是在 C++ 中,卻只有 one, on, ne 匹配到。 程式碼:https://pastebin.com/mnbSsfmn 想請教大大,到底哪裡出錯了? -- Sent from my Sony Xperia XZ1 PiTT // PHJCI -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 106.107.176.158 ※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1550971120.A.1BC.html
LPH66: 這個意思是 (^o) (n) (e$) 三個東西有兩個以上併排 02/25 05:59
LPH66: 另外還有就是你是比對全字串還是比對部份字串 02/25 05:59
LPH66: 前者是 regex_match, 後者是 regex_search 02/25 06:00
cutekid: 推 L 大說明,看來是用了regex_match 全字串比對的問題 02/25 21:11