I have an array with alphanumeric characters. How can I remove the alphabets to have a resulting array of just numbers?
For Example string[] strArray has elements {A2, B44, C108, A99, DE8} will result in an string array
strArrayNum with elements {2,44,108,99,8}. Please advise.