WORKING IN CONSOLE MODE - I am trying to remove all the words before (or including) the first '* on each line of a text file like this:
aktivitet * activity * toiminta
aktivkort * smart card * älykortti
alternartivknapp * option button * valintapainike
anpassare, adapter * adapter * sovitin
användare * user * käyttäjä
...
to get a result like this:
activity * toiminta
smart card * älykortti
option button * valintapainike
adapter * sovitin
user * käyttäjä
...
I tried
txt: read/lines %text-file.txt
and messed around with PARSE and then some FOREACH loops with REMOVE; first, head and /1 but couldn't get the result I wanted.
Any Help Please!
I also need to get a similar result with:
<P><B><A name=5387>aiming symbol</A></B> valotähtäin<BR>
to read
aiming symbol => valotähtäin
although I should be able figure it out for myself as soon as I know how to do the first question.