Vertaling van "substr" in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Retorna la posición de la primera ocurrencia de la subcadena substr en la cadena str.
Returns the position of the first occurrence of substring substr in string str.
Si los caracteres de substr no aparecen en string, el resultado es una cadena vacía.
An empty string is the result, if substr does not occur in string.
Si inicio es negativo, substr lo usa como un índice del carácter desde el final de la cadena.
If start is negative, substr uses it as a character index from the end of the string.
Realiza una operación substr() multibyte de forma segura basada en el número de caracteres.
Performs a multi-byte safe substr() operation based on number of characters.
substr - devuelve la parte de una cadena como se especifica en los dos últimos parámetros.
substr - returns the portion of a string as specified by the last two parameters.
substr() devuelve la porción de cadena especificada por los parámetros comienzo y longitud.
substr() returns the portion of string specified by the start and length parameters.
En este punto, strcat puede devolver un valor, y substr puede devolver un valor.
At that point, strcat' can return a value, then 'substr can return a value.
substr() no modificará la cadena original, sino que devuelve una nueva cadena.
substr() won't modify the original string, but returns the substring instead.
Y sé que la subcadena, o la función substr, que tiene un carácter cadena o carácter vectorial y toma del, el tipo de la, puesta en marcha carácter y el carácter final y se extraerá la cadena.
And I know, I used the substring, or the substr function, which takes a character string or character vector and takes kind of the, the kind of the, starting character and the ending character and it will extract out that string.
Esta es también la diferencia con la función substr(), la cual simplemente cortaría el string entre los bytes, resultando así una secuencia de bytes malformada.
This is also the difference to the substr() function, which would simply cut the string between the bytes and thus result in a malformed byte sequence.
El substr() método devuelve los caracteres de una cadena comenzando en la localización especificada, y en el número de caracteres especificado.
The substr() method returns the characters in a string beginning at the specified location through the specified number of characters.
En este caso, devolverá los primeros 6 caracteres del texto devuelto por strcat, que debe evaluarse antes de que substr pueda finalizar.
In this case it will return the first 6 characters of the string returned by strcat, which must be evaluated before substr can return.
La función substr() ordenará 'empalmar' una cadena en el sentido de que devuelve una porción específica de una cadena en función de la posición de inicio del empalme y la cantidad de caracteres que queremos devolver.
The substr() function will sort of 'splice' a string in that it returns a specific portion of a string based on the start position of the splice and the number of characters we want returned.