Eu tenho esta seguinte linha
scalar TestDmaMac4.sink.udpApp[0] throughput:last 11730.559888477
Quero extrair apenas 11730
desta linha, como posso fazer isso grep
? Quero ignorar o número após a vírgula decimal e só preciso de dígitos antes da vírgula decimal.
(Nota: há um{espaço}{tab}sequência que separa cada um de udpApp[0]
e throughput:last
o número que começa com 11730
.)
Responder1
O regexp abaixo corresponderá a qualquer número flutuante no formato [0-9].[0-9]
e retornará a parte inteira deste número flutuante.
$ a="scalar TestDmaMac4.sink.udpApp[0] throughput:last 11730.559888477"
$ egrep -o '[0-9]+[.][0-9]' <<<"$a" |egrep -o '[0-9]+[^.]' #First grep will isolate the floating number , second grep will isolate the int part.
11730
$ perl -pe 's/(.*?)([0-9]+)(\.[0-9]+.*)/\2/' <<<"$a" #using the lazy operator ?
11730
$ sed -r 's/(.*[^0-9.])([0-9]+)(\.[0-9]+.*)/\2/' <<<"$a" #sed does not have lazy operator thus we simulate this with negation
11730
Para fins de teste, também tentei o regexp acima em uma string diferente com um número flutuante em uma posição diferente sem um espaço à esquerda:
$ c="scalar throughput:last11730.559888477 TestDmaMac4.sink.udpApp[0]"
$ egrep -o '[0-9]+[.][0-9]' <<<"$c" |egrep -o '[0-9]+[^.]'
11730
$ perl -pe 's/(.*?)([0-9]+)(\.[0-9]+.*)/\2/' <<<"$c"
11730
$ sed -r 's/(.*[^0-9.])([0-9]+)(\.[0-9]+.*)/\2/' <<<"$c"
11730
Responder2
l='scalar TestDmaMac4.sink.udpApp[0] throughput:last 11730.559888477'
read -r -a a <<<"$l"
dc -e "${a[-1]}dX10r^dsa*la/p"
echo "$l" | perl -lane 'print/\d+(?=\.\d+$)/g'
resultado
11730
Responder3
Usando Grep:
grep -o " [0-9]\{1,\}"
Testar:
echo "scalar TestDmaMac4.sink.udpApp[0] throughput:last 11730.559888477" | grep -o " [0-9]\{1,\}"
resultados:
11730