unity cekc first letter of string code example
Example: get the first letter of a string unity
String s = "tada";Debug.Log("The first character of the string is: " + s.Substring(0, 1));
String s = "tada";Debug.Log("The first character of the string is: " + s.Substring(0, 1));