Цитата: Нужно чтобы программа как то вытаскивала все строки в которых содержится слово "test-test"
Цитата: string test;
readclipboard (test);
string P[9999];
string R="test-test[^\r\n]+";
int count=regexsearch(sizearray(P), #P[0], test, R);
messagebox("Найдено строк: "+format(count));
for(int i=0; i<count; i++)
{
textbkcolor(65280, 0);
textout(i, 300, 100+i*20, P[i], 1);
}
loop()sleep(100); |