How to find the first number form a string (match one or more digits together) in VB.NET

1 Answer

0 votes
Imports System.Text.RegularExpressions

Module Module1

    Sub Main()

        Dim regex As Regex = New Regex("\d+")
        Dim match As Match = regex.Match("VB.NET 135 Java 898 Python")

        If match.Success Then
            Console.WriteLine(match.Value)
        End If

    End Sub

End Module


' run:
' 
' 135

 



answered Oct 5, 2018 by avibootz
...