There is a string that is not quite simple.
" Книги Учебная литература Дошкольникам Общая подготовка к школе " How do i make an array of it? The first word begins after four spaces, then the rest after 7. It should turn out like this
array[0] = "Книги" array[1] = "Учебная литература" и тд and the length of the string may be different. An array for this purpose?
str.Trim().Split(new string[] {" "}, StringSplitOptions.None);- there are 7 spaces between quotes - Igor