File Name Parsing w/ '_' delimiter

Hello,

I have a file that I need to parse out and allocate to variables.

Format goes like this:

[Vendor#][PO#][Date (in ####### format)].csv

How would you parse this out?

Apologies it has a β€œ_” delimiter between each field

Please use Split(Filename.tostring,β€œ_”)

The output is a string array, so Vendor#= strFileNameArray[0] , PO# =strFileNameArray[1] and so on…

You can split the date using substring.

1 Like

Thanks so much vvaidya!

As always, you are an enormous help.

1 Like

Thanks. How far did you get along with Webscraping About – South Florida Banking Institute ?