Phil_Pearce
Member
- Joined
- Dec 30, 2009
- Messages
- 6
- Programming Experience
- Beginner
I would like to remove the first 2 columns in the datatable if the first character is not numeric. Here is my code so far.
How do I remove the first 2 characters?
VB.NET:
For Each DRow As DataRow In aTable.Rows
Dim cRow As String
cRow = DRow.Item("Column 4").ToString()
If IsNumeric(Left(cRow, 1)) Then
Else
??????
End If
Next