Hello,
which command do we use, if we have a sentence like "word1 word2 word3 word4 word5 word6" and we want
to save to a variable only "word2 word3 word4"? We don't know the number of words, but only which are these words.
Example
sentence 1 -> My name is George and I am 27 years old.
sentence 2 -> My first name is George and I am 27 years old and I live...
need -> George and I am 27
If I want to save to a variable the sentence from George until the end?
What should I do if the sentence has characters such as ", [. { etc.
Should I use join and split command?
thx