string - sustituir - scripts bash ejemplos
Accediendo a los Ășltimos x caracteres de una cadena en Bash (4)
Últimos tres caracteres de string
:
${string: -3}
o
${string:(-3)}
(tenga en cuenta el espacio entre :
y -3
en la primera forma).
Consulte la Expansión de parámetros de shell en el manual de referencia :
${parameter:offset}
${parameter:offset:length}
Expands to up to length characters of parameter starting at the character
specified by offset. If length is omitted, expands to the substring of parameter
starting at the character specified by offset. length and offset are arithmetic
expressions (see Shell Arithmetic). This is referred to as Substring Expansion.
If offset evaluates to a number less than zero, the value is used as an offset
from the end of the value of parameter. If length evaluates to a number less than
zero, and parameter is not ‘@’ and not an indexed or associative array, it is
interpreted as an offset from the end of the value of parameter rather than a
number of characters, and the expansion is the characters between the two
offsets. If parameter is ‘@’, the result is length positional parameters
beginning at offset. If parameter is an indexed array name subscripted by ‘@’ or
‘*’, the result is the length members of the array beginning with
${parameter[offset]}. A negative offset is taken relative to one greater than the
maximum index of the specified array. Substring expansion applied to an
associative array produces undefined results.
Note that a negative offset must be separated from the colon by at least one
space to avoid being confused with the ‘:-’ expansion. Substring indexing is
zero-based unless the positional parameters are used, in which case the indexing
starts at 1 by default. If offset is 0, and the positional parameters are used,
$@ is prefixed to the list.
Como esta respuesta recibe algunas vistas regulares, permítanme agregar la posibilidad de abordar el comentario de John Rix ; como él menciona, si su cadena tiene una longitud inferior a 3, ${string: -3}
expande a la cadena vacía. Si, en este caso, desea expandir la string
, puede usar:
${string:${#string}<3?0:-3}
Utiliza el operador ?:
Ternary if, que puede usarse en Shell Arithmetic ; dado que, como está documentado, el desplazamiento es una expresión aritmética, esto es válido.
Descubrí que con ${string:0:3}
uno puede acceder a los primeros 3 caracteres de una cadena. ¿Existe un método igualmente sencillo para acceder a los últimos tres caracteres?
Otra solución es usar grep -o
con un poco de magia regex para obtener tres caracteres seguidos por el final de la línea:
$ foo=1234567890
$ echo $foo | grep -o ...$
890
Para que sea opcional obtener los últimos caracteres de 1 a 3, en el caso de cadenas con menos de 3 caracteres, puede usar egrep
con esta expresión regular:
$ echo a | egrep -o ''.{1,3}$''
a
$ echo ab | egrep -o ''.{1,3}$''
ab
$ echo abc | egrep -o ''.{1,3}$''
abc
$ echo abcd | egrep -o ''.{1,3}$''
bcd
También puede usar diferentes rangos, como 5,10
para obtener los últimos cinco a diez caracteres.
Para generalizar la pregunta y la respuesta de gniourf_gniourf (ya que esto es lo que estaba buscando), si desea cortar un rango de caracteres de, digamos, 7mo desde el final hasta 3o desde el final, puede usar esta sintaxis:
${string: -7:4}
Donde 4 es la duración del curso (7-3).
Además, si bien la solución de gniourf_gniourf es obviamente la mejor y más sencilla, solo quería agregar una solución alternativa usando cut :
echo $string | cut -c $((${#string}-2))-$((${#string}))
Esto es más legible si lo haces en dos líneas definiendo la longitud $ {# string} como una variable separada.
Puedes usar tail
:
$ foo="1234567890"
$ echo -n $foo | tail -c 3
890
Una manera un tanto indirecta de obtener los últimos tres caracteres sería decir:
echo $foo | rev | cut -c1-3 | rev