Page 1 of 1

substring option is not there in the paralle jobs.

Posted: Wed Apr 28, 2010 11:23 am
by pavankatra
Hi
i have string like pavankumar.
my output is avankum.

substring option is not there in the paralle jobs.

So anyone please suggest me on this.

Thanks in advance.

Thanks
pavan kumar

Re: substring option is not there in the paralle jobs.

Posted: Wed Apr 28, 2010 11:34 am
by pavankatra
pavankatra wrote:Hi
i have string like pavankumar.
my output is avankum.

substring option is not there in the paralle jobs.

So anyone please suggest me on this.

Thanks in advance.

Thanks
pavan kumar

i am sorry,i got one idea to solve this.
columnname[1,1] means it will display 1st character.

correct me if i am wrong.

Thanks
Pavan Kumar

Posted: Wed Apr 28, 2010 11:34 am
by anbu
[ ] operator is available in parallel job.

Code: Select all

var="pavankumar"
var[2] gives avankumar

Re: substring option is not there in the paralle jobs.

Posted: Wed Apr 28, 2010 11:35 am
by anbu
pavankatra wrote:
pavankatra wrote:Hi
i have string like pavankumar.
my output is avankum.

substring option is not there in the paralle jobs.

So anyone please suggest me on this.

Thanks in advance.

Thanks
pavan kumar

i am sorry,i got one idea to solve this.
columnname[1,1] means it will display 1st character.

correct me if i am wrong.
Thanks

Pavan Kumar
You are right.

Posted: Wed Apr 28, 2010 11:40 am
by pavankatra
anbu wrote:[ ] operator is available in parallel job.

Code: Select all

var="pavankumar"
var[2] gives avankumar
thank you.It is working fine.

Thanks
Pavan Kumar