Splitting a String into a List Using Seperator "*"

From: Christopher M. Lusardi (clusardi2k_at_aol.com)
Date: 01/31/04


Date: 30 Jan 2004 16:13:43 -0800

Hello,

   How do I split a string using the library function "split" with an asterisk?
I have to tell split break the string when it sees "abc*". I.E.: If I give split
the string "abc def ghi jkl abc* message" I want to get back two parts.
I want "abc def ghi jkl" and "message".

              Thank you,
              Christopher Lusardi



Relevant Pages