I've got a regex but I'm not sure what the {1,} stands for. Full regex is next: ^.{1,}$.
|
|
|
It is effectively same as: The general form of this limiting quantifier is:
You can drop the In your case |
||||
|
|
|
It means any character at least one time.
|
|||
|
|
|
It stands for "one or more". The whole expression means "the beginning of a line ( |
|||
|
|
|
|
|||
|
|
|
It means match repetitions of the previous character (i.e. any character) at least 1 time. It will basically match non-empty strings. |
|||
|
|