Posts: 1,058
Threads: 367
Joined: Oct 2007
I am in need of a code to locate the element(s) of a string array using a sub-string pattern of these elements. I remember I have found something similar in the past in the forum, but I now I failed. Any advice is mostly welcome. Many thanks in advance.
Posts: 12,072
Threads: 140
Joined: Dec 2002
Macro
Macro2749
ARRAY(str) a="http[]www[]quickmacros[]com[]forum[]viewtopic[]php"
int i
for i 0 a.len
,if(find(a[i] "o")>=0) out i
,if(matchw(a[i] "*o*" 1)) out i
,//if(findrx(...
,//if(SelStr(...
Posts: 1,058
Threads: 367
Joined: Oct 2007
Dear Gintaras, Thanks so much, once more!