in reply to Re^3: Need help in parsing an input
in thread Need help in parsing an input
I can also get the output array as like below also if i wantoutputarray[0]=name ip port outputarray[1]=------------------------------------ outputarray[2]=http-listener-1 * 6712 outputarray[3]=http-listener-2 * 4743
I want to write a subroutine which will check whether port exists and if exists returns me true and the listener name if not it returns me false and null getListenerName($porttobeChecked) This subroutine returns me the name of the listener if i pass a port. Eg: If $porttobechecked=6712 I want to return an array a[0]=TRUE and a1=http-listener-1(listener name) If port to be checked = 4516.I want to return an array a[0]=FALSE and a1=null .Help requiredoutputarray[0]=http-listener-1 * 6712 outputarray[1]=http-listener-2 * 4743
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Need help in parsing an input
by 2teez (Vicar) on Jan 17, 2013 at 14:15 UTC | |
by sandeepda (Novice) on Jan 17, 2013 at 14:25 UTC |