Hi,
i have one string like this......
a=string1,string2,string3,string4,
here i don't want last comma.....
i want only
a=string1,string2,string3,string4
how can i remove that.....any body know abt it tell me....
regards,
Murugan.
Printable View
Hi,
i have one string like this......
a=string1,string2,string3,string4,
here i don't want last comma.....
i want only
a=string1,string2,string3,string4
how can i remove that.....any body know abt it tell me....
regards,
Murugan.
a = Left$(a, Len(a)-1)
:)
Err, how about...
VB Code:
'Assuming the string is "a" If right(a,1) = "," then a = left(a,len(a)-1) end if
dammit:rolleyes: :p :p