0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【正規表現】最短一致と最長一致

Posted at

一覧

最長一致 最短一致 意味
* *? 直前のパターンの0回以上連続
+ +? 直前のパターンの1回以上連続
? ?? 直前のパターンの0回か1回の出現

最長一致

デフォルトでは、*+ は最長一致です。

あいうえお かきくけこ さしすせそ

上記の文字列に対して

^.*\s

あいうえお かきくけこ 

にマッチします。

最短一致

最短一致を行うには、? を使用します。

^.*?\s

あいうえお

にマッチします。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?