Yanıtlar:
Son üç karakter string
:
${string: -3}
veya
${string:(-3)}
(arasında boşluk sakıncası :
ve -3
birinci formunda).
Lütfen referans kılavuzundaki Kabuk Parametre Genişletme bölümüne bakın :
${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.
Bu yanıt birkaç düzenli görüş aldığından, John Rix'in yorumunu ele almak için bir olasılık eklememe izin verin ; onun bahsettiği gibi, dizenizin uzunluğu 3'ten azsa ${string: -3}
, boş dizgeye genişler. Bu durumda, genişlemesini string
istiyorsanız, kullanabilirsiniz:
${string:${#string}<3?0:-3}
Bu, Shell Aritmetiğinde?:
kullanılabilen üçlü if işlecini kullanır ; Belgelendiği gibi, ofset bir aritmetik ifade olduğundan, bu geçerlidir.
deppfx@localhost:/tmp$ echo ${$(hostname): -3}
-bash: ${$(hostname): -3}: bad substitution
temp=$(hostname); echo "${temp: -3}"
. Bash, HOSTNAME
değişkene de sahiptir (çıktısından farklı olabilir veya olmayabilir hostname
). Kullanmak istiyorsan, yap echo "${HOSTNAME: -3}"
.
some func | echo ${string: -3}
- nasıl çıktısını atarım some func
için string
?
string=$(some func)
ve sonra echo "${string: -3}"
.
Şunları kullanabilirsiniz tail
:
$ foo="1234567890"
$ echo -n $foo | tail -c 3
890
Son üç karakteri elde etmenin biraz dolambaçlı bir yolu şunu söylemek olabilir:
echo $foo | rev | cut -c1-3 | rev
Başka bir geçici çözüm, grep -o
üç karakter ve ardından satırın sonunu elde etmek için küçük bir normal ifade büyüsüyle kullanmaktır:
$ foo=1234567890
$ echo $foo | grep -o ...$
890
İsteğe bağlı olarak 1'den 3'e kadar son karakteri almasını sağlamak için, 3'ten az karakter içeren dizeler olması durumunda, egrep
şu normal ifadeyle kullanabilirsiniz :
$ 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
5,10
Son beş ila on karakteri elde etmek gibi farklı aralıklar da kullanabilirsiniz .
Gniourf_gniourf'un sorusunu ve cevabını genelleştirmek için (aradığım şey buydu), örneğin 7'den sondan 3'e kadar bir dizi karakter kesmek istiyorsanız, bu sözdizimini kullanabilirsiniz:
${string: -7:4}
4 elbette uzunluktur (7-3).
Buna ek olarak, gniourf_gniourf çözümü kesinlikle en iyi ve en temiz olsa da, ben sadece cut kullanarak alternatif bir çözüm eklemek istedim :
echo $string | cut -c $((${#string}-2))-$((${#string}))
$ {# String} uzunluğunu ayrı bir değişken olarak tanımlayarak iki satırda yaparsanız, bu daha okunaklı olur.
cut
önce başlangıç / durdurma hesaplama yaklaşımını birleştirmek ve daha sonra bu değişkenleri parametre genişletmede kullanmaktır (ayrıca cut
bash ofsetlerinin sırasıyla 1 ve sıfırdan başladığını da belirtmek gerekir, bu nedenle bunun gerekli olacaktır. burada yapmadığım hesaplamalara dahil edilmek üzere): start=$((${#string}-3)); stop=$((${#string}));
ve sonra echo ${string: $start : $stop}
vsecho $string | cut -c "$start"-"$stop"