I have a line:
user1 home1
I can use "(.*?) " to match user1, but failed to use " (.*?)$" to match home1.
How to match them? I cannot use split. Have to use regex to implement it.
|
|
|
Something like this should also work:
Catch everything in first capture group until 1 or more spaces OUTPUT
|
|||
|
|
|
You cannot use You want: |
|||
|
|
|
This pattern will match both words:
The Pattern explained:
Also, |
|||||||||
|
|
|
I think this should do the trick |
|||
|
|