Tenemos la respuesta a esta dificultad, al menos eso pensamos. Si tienes inquietudes coméntalo, que para nosotros será un gusto responderte
Ejemplo 1: c subcadena aguda
// To get a substring of a string use 'Substring()'// The first value is the index of where to start and the second// value is the lenght of the substring.string str ="Hello World!"
str.Substring(3,4)// Output: "lo W"// If you only give a starting index, it will go until the end
str.Substring(3)// Output: "lo World!"
Ejemplo 2: c# obtiene los primeros 5 caracteres de string
string result = str.Substring(0,5);
Ejemplo 3: c# obtener cierto carácter de string
string myString ="string";// outputs rprint(mystring[2]);
Aquí tienes las reseñas y valoraciones
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)