RE: Re: Witango-Talk: RE: Array to String

2002-12-04 Thread Wilcox, Jamileh
t; ' (space). > > > hope this helps some (: > > - Original Message - > From: "David Shelley" <[EMAIL PROTECTED]> > To: "Multiple recipients of list witango-talk" > <[EMAIL PROTECTED]> > Sent: Tuesday, December 03, 2002

RE: Re: Witango-Talk: RE: Array to String

2002-12-04 Thread Wilcox, Jamileh
le recipients of list witango-talk > Subject: Re: Witango-Talk: RE: Array to String > > > this is a good solution for the false positives issue i was > talking about in my last email as well (as long as you arent > searching for something with a comma in it hehe). >

RE: Witango-Talk: RE: Array to String

2002-12-03 Thread Wilcox, Jamileh
Nevermind! Must remember <@CALC> does alla sortsa stuff. :) > -Original Message- > From: Wilcox, Jamileh > Sent: Tuesday, December 03, 2002 3:44 PM > To: Multiple recipients of list witango-talk > Subject: Witango-Talk: RE: Array to String > > > Or, alternatively, is there a way to se

Re: Witango-Talk: RE: Array to String

2002-12-03 Thread Atrix Wolfe
witango-talk" <[EMAIL PROTECTED]> Sent: Tuesday, December 03, 2002 2:29 PM Subject: RE: Witango-Talk: RE: Array to String > A comma in CSuffix=',' > Would put the comma between the values :-) > > Ben Johansen - http://www.pcforge.com > Authorized Witango Re

Re: Witango-Talk: RE: Array to String

2002-12-03 Thread Atrix Wolfe
is helps some (: - Original Message - From: "David Shelley" <[EMAIL PROTECTED]> To: "Multiple recipients of list witango-talk" <[EMAIL PROTECTED]> Sent: Tuesday, December 03, 2002 2:29 PM Subject: RE: Witango-Talk: RE: Array to String > To convert

RE: Witango-Talk: RE: Array to String

2002-12-03 Thread Ben Johansen
ECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Atrix Wolfe Sent: Tuesday, December 03, 2002 2:19 PM To: Multiple recipients of list witango-talk Subject: Re: Witango-Talk: RE: Array to String well you can always do this to take an array of text and turn it into a string... <@VAR local$MyArray

RE: Witango-Talk: RE: Array to String

2002-12-03 Thread David Shelley
To convert an array to a string you can use the <@var> tag. <@var yourArray aprefix='' asuffix='' rprefix='' rsuffix='' cprefix='' csuffix=''> This will append all the values together in one string. To check if a value is in the array use <@if expr="@@yourArray contains @@yourString"> The contains

Re: Witango-Talk: RE: Array to String

2002-12-03 Thread Atrix Wolfe
well you can always do this to take an array of text and turn it into a string... <@VAR local$MyArray type=text APrefix='' ASuffix='' RPrefix='' RSuffix='' CPrefix='' CSuffix=''> you can also use the <@filter> tag to find values your looking for in arrays without having to loop through them a row