problem:
i have one string which looks like
{some numbers} {text1} {text2} {text3} {text4}
and i want every "information" between { } as a seperate string:
a = "some numbers"
b = "text1"....
i played around with string last/first and string range, but was only able to get the first ("some numbers") and the last ("text4") part.
bonus question
how do i extract the first word of text4 only?
thanx for your help!