hmm that was quick
all right substr seems to be what I need..
however the syntax is like
rest = substr("abcdef", 1, 3); // returns "bcd"
as I told you I have very long texts and I should work on "word" basis rather than "character" basis.
I think I'm gonna use sth like,
rest= substy("$mytext", x, y);
What do you think?