Concatenating more than two strings

boundary="----=_NextPart_000_0048_01BDE70E.6529D280"

This is a multi-part message in MIME format.


Listserv Archives (BOB member since 2002-06-25)

In a message dated 98-09-23 19:21:26 EDT, you write:

123 45 67 89

I need to reassemble these 4 objects as one string (“896745123”). I’ve
used
the concat function to combine the last 2 successfully (“8967”). However, when I try to add the 3rd object, I get a parsing error (“invalid number of arguments”).

It appears concat can’t combine more than 2 strings. Is there another way to do it??

Use the “&” operator instead of the concat() function. The syntax would be:

“89” & “67” & “45” & “123” with the result of “896745123”.

Regards,
Dave Rathbun
Integra Solutions
www.islink.com


Listserv Archives (BOB member since 2002-06-25)