Descubrí que con ${string:0:3}
uno se puede acceder a los primeros 3 caracteres de una cadena. ¿Existe un método igualmente fácil para acceder a los últimos tres caracteres?
125
Últimos tres personajes de string
:
${string: -3}
o
${string:(-3)}
(tenga en cuenta el espacio entre :
y -3
en la primera forma).
Consulte 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.
Dado que esta respuesta recibe algunas visitas regulares, permítanme agregar la posibilidad de abordar el comentario de John Rix ; como él menciona, si su cadena tiene una longitud menor que 3, se ${string: -3}
expande a la cadena vacía. Si, en este caso, desea la expansión de string
, puede utilizar:
${string:${#string}<3?0:-3}
Utiliza el ?:
operador ternario if, que puede utilizarse en aritmética de Shell ; dado que, como está documentado, el desplazamiento es una expresión aritmética, esto es válido.
deppfx@localhost:/tmp$ echo ${$(hostname): -3}
-bash: ${$(hostname): -3}: bad substitution
temp=$(hostname); echo "${temp: -3}"
. Bash también tiene laHOSTNAME
variable (que puede o no diferir de la salida dehostname
). Si quieres usarlo, hazloecho "${HOSTNAME: -3}"
.some func | echo ${string: -3}
¿cómo asigno la salida desome func
astring
?string=$(some func)
y luegoecho "${string: -3}"
.Puede utilizar
tail
:Una forma un tanto indirecta de obtener los últimos tres caracteres sería decir:
fuente
Otra solución es usar
grep -o
con un poco de magia de expresiones regulares para obtener tres caracteres seguidos del final de la línea:Para que, opcionalmente, obtenga los últimos 1 a 3 caracteres, en el caso de cadenas con menos de 3 caracteres, puede usar
egrep
con esta expresión regular:También puede usar diferentes rangos, como
5,10
para obtener los últimos cinco a diez caracteres.fuente
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, el séptimo desde el final al tercero desde el final, puede usar esta sintaxis:
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 la más ordenada, solo quería agregar una solución alternativa usando cut :
Esto es más legible si lo hace en dos líneas definiendo la longitud $ {# string} como una variable separada.
fuente
cut
enfoque de calcular el inicio / parada primero y luego simplemente usar estas variables en la expansión de parámetros (también vale la pena mencionar que lascut
compensaciones de bash comienzan en 1 y cero, respectivamente, por lo que esto necesitaría para ser incluido en los cálculos, que no estoy haciendo aquí):start=$((${#string}-3)); stop=$((${#string}));
y luegoecho ${string: $start : $stop}
vsecho $string | cut -c "$start"-"$stop"