To split a string use 'Split()', you can choose where to split string text = "Hello World!" string[] textSplit = text.Split(" "); // Output: // ["Hello" ...
確定! 回上一頁