May 31, 2006 #1 sdslrn123 Technical User Jan 17, 2006 78 GB I am trying to split files with ';###KW' (NOT INCLUDING SINGLE QUOTES) Code: @finalcount = split (';###KW',$secondstring); Is this right? (It isn't because I have tried. Why?)
I am trying to split files with ';###KW' (NOT INCLUDING SINGLE QUOTES) Code: @finalcount = split (';###KW',$secondstring); Is this right? (It isn't because I have tried. Why?)
May 31, 2006 #2 PaulTEG Technical User Sep 26, 2002 4,469 IE Code: @finalcount = split (/;\#\#\#KW/,$secondstring); Try the above ... Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-) Upvote 0 Downvote
Code: @finalcount = split (/;\#\#\#KW/,$secondstring); Try the above ... Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
May 31, 2006 #3 ishnid Programmer Aug 29, 2003 1,422 IE The OP's original code works fine for me, anyway. Upvote 0 Downvote