Re: How can I read out a spezific line?
p0etb0x <[email protected]>
| Newsgroups | gmane.comp.windows.autoit.user |
|---|---|
| Message-ID | <[email protected]> |
have u ever tried stringsplit by crlf and get $str[3] as the 3rd line? or try using regexp *lf*lf(*)lf* to get it?? --- In [email protected], "Lüth, Carsten" <c.lueth@...> wrote: > > Hi autoit's! > > ~~~~~~~~~~~~~~~~~~~~ > $text = WinGetText("", "") > MsgBox(0, "Text read was:", $text) > ~~~~~~~~~~~~~~~~~~~~ > > I'm getting back a messagebox with several lines. > How can I read out a spezific line? > e.g. I want to read only the 3rd line?