Given a string,
mystr = \"Average student score 88\"
I wish to split if there are more than 1 space. I wish to obtain the following:<
You may specify it through a repetition quantifier.
strsplit(mystr, "\\s{2,}")
\\s{2,} regex should match two or more spaces.
\\s{2,}