Question

a="abc-ABC-3.2-def"

For the above mentioned variable, I need to cut so that i get all the string before occurrence of number.

Output expected after cut is,

 abc-ABC- 

The number can be anything, Please help.

Était-ce utile?

La solution

echo $a | awk '{print $1}' FS=[0-9]

Autres conseils

Using bash strings:

echo ${a%%[0-9]*}

%% means greedy pattern matching from the right, we match any digit (0-9) followed by some text (or nothing).

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top