Y
yxq
Imports System.Text.RegularExpressions
Dim objRegex As Regex
MessageBox.Show(objRegex.Split("C:\Test.txt", ":\")(0))
The error will occour, seem that the "\" can not become list separator.
If that will not work, how to separate using ":\"
Thank you
Dim objRegex As Regex
MessageBox.Show(objRegex.Split("C:\Test.txt", ":\")(0))
The error will occour, seem that the "\" can not become list separator.
If that will not work, how to separate using ":\"
Thank you