Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can someone explain what the following regexp matches?

^.*$

Thank you!

share|improve this question
1  
It seems like this is well-covered in download-llnw.oracle.com/javase/1.5.0/docs/api/java/util/regex/…. What was wrong with the official documentation? – S.Lott Aug 10 '10 at 14:27

7 Answers

Either the entire string or the entire line, depending on whether multiline mode is used.

share|improve this answer

everything.

^ is the beginning of the string. 
. is any character. 
* means 0 or more of said characters. 
$ is the end of the string. 

So this regex matches 0 or more characters that start and end a string (which is everything).

share|improve this answer
Thank you for the explanation – user73829 Aug 10 '10 at 14:24
+1 for a good simple explanation – TmEllis Aug 10 '10 at 14:26
3  
By default, most regex implementations will not match \r and \n for the DOT meta char. So, not "everything". – Bart Kiers Aug 10 '10 at 14:29
@Bart K. Thanks I missed that. – dave Aug 10 '10 at 14:30

It matches all empty and non-empty lines. It can be broken down into the following parts:

^ : match the beginning of the line
. : match any character except newline
* : match zero or many instances of the match
$ : match the ending of the line 
share|improve this answer

It will match anything.

^ signifies the start of the line. $ signifies the end of the line. So this means that the expression must match the entire string it is passed.

. will match any single character. * means that the thing before it can appear between 0 to any number of times. So this means that the string can have any number of characters, including 0.

share|improve this answer

^ = Start of string or line (depends on settings).

. = Any character.

* = Any number of the previous character. In this case the ..

$ = End of string or line (depends on settings).

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).

share|improve this answer

It looks like it matches everything...

share|improve this answer
This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post. – Ankur Nov 15 '12 at 7:26
@Ankur: disagree. It does directly answer the question, albeit with little explanation. It's also, strictly speaking, not entirely correct, but that too does not mean it's not an answer. – Mac Nov 15 '12 at 19:40

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).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.