home, UNITY, updated 2022-05-24 17:05:38 SubString Functions in unity To get substring from a string, You can use SubString function like this: string str = "Hello World"; Debug.Log(str.Substring(2,6)); output: llo Wo
post a comment