I'm wondering is there a symbol for any number (including zero) of any characters
|
|||||
|
|
Do you mean
|
|||||||||||
|
|
|
The answer to this should be in any Java regex tutorial or documentation that you look up. Yes, there is one, it's the asterisk. *
I just googled "java regex repeat zero or more times" and the first hit answers your question, as do probably 95% of the other hits. |
||||
|
|
|
I would use |
|||||
|
|
You can use this regular expression (any whitespace or any non-whitespace) as many times as possible down to and including 0.
This expression will match as few as possible, but as many as necessary for the rest of the expression.
For example, in this regex |
|||
|
|