$aa = "Main:http://google-test.com:8080/service"
(or)
$aa = "http://google-test.com:8080/service2"
I want to split this into two parts:
Main:
http://google-test.com:8080/service
But it is not working with this split:
split (/\:/,$aa,1);
I want to split this into two parts:
But it is not working with this split:
|
||||
|
|
|
You need change the limit from 1 to 2.
From perldoc -f split:
It looks like you were trying to use it as the maximum number of times to split and not the number of parts to return. |
||||
|
|
|
New question, new answer:
Assuming the "Main" part can only be alphanumerics. This will also match Split would work too, with a limit of two, as gpojd has already answered.
But then you would need to check and see what you caught in the two variables. E.g. the URL could be in either |
||||
|
You want to split it at the colons? try:
Then you can access the different parts of the split using:
|
|||
|
|