“Numer wymiany SED” Kod odpowiedzi

SED Zastąp liczbę o zmiennej długości

Just use one of following commands for replacing a number of:
sed "s/[0-9]//" f.txt	#One single digit as 1
sed "s/[0-9]\+//" f.txt #Further digits as 837, specifying match repetition "\+"
sed "s/[0-9\+\.[0-9]\+]//" file.txt #Float type with decimals
Armandres

Numer wymiany SED

Just use one of following commands for replacing a number of:
sed "s/[0-9]//" f.txt	#One single digit as 1
sed "s/[0-9]\+//" f.txt #Further digits as 837, specifying match repetition "\+"
sed "s/[0-9]\+\.[0-9]\+]//" file.txt #Float type with decimals
Armandres

Odpowiedzi podobne do “Numer wymiany SED”

Pytania podobne do “Numer wymiany SED”

Więcej pokrewnych odpowiedzi na “Numer wymiany SED” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu