Un string guarda texto.

string nombre = "Jugador";

Concatenar

Podemos unir textos con +.

string nombre = "Alex";
int vida = 100;

Debug.Log(nombre + " tiene " + vida + " de vida");

Interpolación

Suele ser más clara.

Debug.Log($"{nombre} tiene {vida} de vida");

Dentro de { } puede haber variables o expresiones.

Debug.Log($"Daño total: {daño * 2}");

Length

Cantidad de caracteres.

int cantidad = nombre.Length;

ToUpper y ToLower

string mayusculas = nombre.ToUpper();
string minusculas = nombre.ToLower();

Contains