more regexp stuff, maybe?

2002-09-18 Thread Scott Taylor
Hey all, I have a small array with field names that I would like to store them in a string so that I can include it in an SQL string later. ie: @Fields = (field1,field2,field3); I want $SQLFields = field1,field2,field3; of course $SQLField = @Fields; returns the list field1 field2 field3,

RE: more regexp stuff, maybe?

2002-09-18 Thread nkuipers
my $SQLfields = join ',', @Fields; -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: more regexp stuff, maybe?

2002-09-18 Thread david
Scott Taylor wrote: Hey all, I have a small array with field names that I would like to store them in a string so that I can include it in an SQL string later. ie: @Fields = (field1,field2,field3); I want $SQLFields = field1,field2,field3; of course $SQLField = @Fields; returns