Feel like a moron asking but how do i delete the first space in something?
ex:
string = " bob";
i want it to be "bob" instead of " bob"
thanks
Use trim() or ltrim().
Diego