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.
(^\d{5}$)|(^\d{9}$)
この正規表現は ruby online validator では有効なのに、Eclipse では無効なように見えるのはなぜですか?
Eclipse はおそらく、行の開始と終了ではなく、入力の^開始と入力の終了としてのみ認識します。$複数行モードを有効にしてみてください:
^
$
(?m)(?:(^\d{5}$)|(^\d{9}$))
詳細: http://www.regular-expressions.info/anchors.html