Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
すべての ';' を検索する正規表現を作成しようとしています。改行 (\n) 文字が続かない文字。
;(?!\\\n)
および「;」が前にないすべての改行 (\n) 文字 キャラクター:
(?< !;)\\\n
残念ながら、私は Qt 4.7.4 QRegExp を使用しており、"Look Behind" をサポートしていません。「Look Behind」を使用しないように上記の正規表現を書き直すにはどうすればよいですか?