I'm trying to get the numbers in bash from the following string.
$qry2)); 275 --> 275 and not 2275
$qry1)) { 147 --> 147 and not 1147
So what is the code for getting the last whole number?
|
|
If you can use
|
|||
|
|
|
Using
Look for start of line, any number of characters followed by a non-digit and a string of digits to the end of the line; replace that with the string of digits. |
|||
|
|