PDA

View Full Version : Trim Function


Leeus
11-01-2002, 09:59 PM
I need a function similar to the trim, basically I have a string, i.e. "twang.net", what I need is the first three digits from the right so in this case twa, is this possible?

Roy Sinclair
11-01-2002, 10:07 PM
Use the Left function: rslt = Left('Twang",3)

Leeus
11-02-2002, 05:22 PM
Thanks, works a treat