Re: strtok question
- Posted by gertie at visionsix.com Mar 12, 2003
- 364 views
On 13 Mar 2003, at 9:50, Derek Parnell wrote: > > On Wed, 12 Mar 2003 14:45:31 -0600, <gertie at visionsix.com> wrote: > > > > > On 12 Mar 2003, at 20:22, Brian Broker wrote: > > > >> > >> But then I'm essentially making two passes to get what I want (first > >> pass to replace, second to parse). I was wondering if there was a way > >> to get what I want with just one pass... > > > > Not with the currently released version of strtok, because you have no > > delimiters around the "=" in your example, the complete token being > > "x=y". In next release, i will be supplying an optional form to keep > > multiple selected separators. Even then, there will be multiple passes > > thru the list of separators supplied as the 2nd param of parse(), it will > > just > > be hidden from you. > > > > Kat > > I did supply an addition to strtok that broke apart a line based on 'words as > tokens' so that the "x=y" would have been split into three tokens, just as "x > = > y" would have too. Kat, has not added this to the library yet. I wanted to make sure it worked with all the othe functions, and add a few more things too. For now, it would be easiest for him to write the lines with delimiters around the keywords. Kat