IonicWind Software

IWBasic => General Questions => Topic started by: myql on March 20, 2009, 12:16:45 AM

Title: Where can I find string functions such as pattern matching, split, etc.
Post by: myql on March 20, 2009, 12:16:45 AM
EB has some useful string functions, but are there some higher level functions in Windows DLLs, such as for matching regular expressions, turning a delimited string into an array, etc? If they exist, how do I find them? I don't want to reinvent them if I don't have to.
Title: Re: Where can I find string functions such as pattern matching, split, etc.
Post by: billhsln on March 20, 2009, 04:17:17 AM
Here are 2 programs that I wrote.  COMMA_DELIMIT.EBA will parse a standard Comma Delimited files (See comments in program).  TAB.EBA will parse a Tab delimited file (CHR$(9)).

I am not exactly sure what you mean by pattern matching, but hopefully these 2 programs will help.

Bill