Re: [Tutor] about FIND

2005-10-24 Thread Alan Gauld
> find(s, sub [,start [,end]]) -> in > > what does *args mean (especially the '*')? *args means that a variable number of arguments can be provided. The exact nature of those being described in the next line. So: find =(s,sub) find(s,sub,start) find(s,sub,start,stop) are all valid > also, in t

[Tutor] about FIND

2005-10-24 Thread Shi Mu
I got confused by the following information from the help for "FIND": find(s, *args) find(s, sub [,start [,end]]) -> in what does *args mean (especially the '*')? also, in the sub, why put a comma before start? what does 'in' mean? ___ Tutor maillist