Can someone explain what the following regexp matches?
^.*$
Thank you!
|
|
Either the entire string or the entire line, depending on whether multiline mode is used. |
|||
|
|
|
everything.
So this regex matches 0 or more characters that start and end a string (which is everything). |
|||||||||||
|
|
It matches all empty and non-empty lines. It can be broken down into the following parts:
|
|||
|
|
|
It will match anything.
|
|||
|
|
|
Put them together and it can match either a whole string or one whole line depending on what the multiline settings are (see this for more info). |
|||
|
|
|
It looks like it matches everything... |
|||||
|
|
It looks like it matches everything including empty strings. The .* means that it matches everything (the period) 0 or more times (the *). The ^ and the $ are redundant if you have set the multline flag (not sure what it is in java). |
|||
|
|