vb.net - Convert string array to int array - Stack Overflow
Maybe a few more lines of code than the other answers but... 'Example assumes the numbers you are working with are all Integers. Dim arrNumeric() As Integer For Each strItemInArray In YourArrayName If IsNumeric(strItemInArray) Then If ......