Hi To all,
I got problem using regex on how to download all text file in one folder
im using this as my reference
Dim RegexObj As New Regex("<*""(?<path>[^""]*txt)"">(?<fileName>[^.txt]+$)</A>")
Dim MatchResults As Match = RegexObj.Match(htmlcontent)
Dim matchCount = RegexObj.Matches(htmlcontent).Count
Me.ProgressBar1.Maximum = matchCount
here is the list i want to get
here's the url of the items http://goo.gl/nL3dEk
callcards_prod.txt
cignal_pldt_meralco.txt
gaming_prod.txt
globe_eload_prod.txt
internet_prod.txt
other_prod.txt
satellite_prod.txt
smart_pldt_eload.txt
sun_eload_prod.txt
thank in advance


Reply With Quote
