The two length expressions evaluate to numbers - so you're actually saying (using your example of 12345678):

put char 5 to 8 of it into myExtension

However, transcript can count backwards as well as forwards, so simpler would be:

put char -3 to -1 of it into myExtension

negative numbers in this context simply mean counting backwards from the end of the string.

Cheers

Mark

On 26 Jan 2005, at 06:34, [EMAIL PROTECTED] wrote:

put char (length(it) - 3) to (length(it)) of it into myExtension

but don't understand what it means.

_______________________________________________ use-revolution mailing list [email protected] http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to