question on func equal_from
- Posted by Salix <salix at ?reemail.h?> Jul 26, 2007
- 772 views
Would
r=equal_from(x,s,i)
be the same as
r=(match(x,s)=i)
but faster and the same as
if i>=1 and length(s)>i+length(x)-1 then r=equal[x,s[i..i+length(x)-1]] else r=0 end if
but simplier? Why hasn't this also been implemented if we have match_from and find_from? Cheers, Salix