AWK print specific column if chosen column is only numeric else print another column AIX

Is it possible to use an awk if condition to print a specific column if the chosen column is only values or characters? below is an example: echo "This is example test 1 for VAL1 value = int or VAL2 = string" | awk ‘{if ($5 == [0-9]) print $10 else print $14}’ OR: echo… Read More AWK print specific column if chosen column is only numeric else print another column AIX