Ram Prasad

Ram Prasad

  • NA
  • 326
  • 16.8k

How to remove alphabets from alphanumeric array c#

Jul 6 2020 2:08 PM
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.

Answers (2)