“UNITY STRING Podziel” Kod odpowiedzi

UNITY STRING Podziel

string example = "Give_me_a_like_please";

string[] splitArray =  example.Split(char.Parse("_")); //return one word for each string in the array
//here, splitArray[0] = Give; splitArray[1] = me etc...

for(int i = 0; i < splitArray.Lenght; i++)
{
	Debug.Log(splitArray[i]);
}

//This shows in the console "Give" "me" "a" "like" "please"
Tartaud

UNITY STRING Podziel



articleDataString.Split(new string[] { "|NEXT|" }, StringSplitOptions.None);


Super Serval

Odpowiedzi podobne do “UNITY STRING Podziel”

Pytania podobne do “UNITY STRING Podziel”

Więcej pokrewnych odpowiedzi na “UNITY STRING Podziel” w C#

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu