Yes, you just repeat the from … in clause:
var words = from str in text
from word in str.Split(' ')
select word;
Yes, you just repeat the from … in clause:
var words = from str in text
from word in str.Split(' ')
select word;