Horje
unity string split Code Example
unity string split
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"
unity string split


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


Source: devarama.com




Csharp

Related
unity reset scene Code Example unity reset scene Code Example
raycast from camera to mouse unity Code Example raycast from camera to mouse unity Code Example
steam top wishlist Code Example steam top wishlist Code Example
asp.net data annotations email Code Example asp.net data annotations email Code Example
dotnet install ef Code Example dotnet install ef Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13