10-03-2012, 07:50 PM
Hi Ravi,
First assign all the data you need to variable x: as follows
x ="ravi,password,10032012,Deniver"
'''once you are into function split the x value seperated by delimitor ,
First assign all the data you need to variable x: as follows
x ="ravi,password,10032012,Deniver"
'''once you are into function split the x value seperated by delimitor ,
Code:
Function(x)
x=split(x,",")
''Now x(0) has value 'ravi"
''x(1) has value "password" etc. You can use these values in the function,
End Function.