How to get part of filename?

Zoticos

New Member
Joined
Jan 29, 2011
Messages
16
I'm trying to get a part of a filename read into strings.

Sample filename:

\BryceCanyon\canon-picture001-roll-nr3__07-13-2010_08-15-43.jpg

I need to read three different parts of the filename into three strings.

like,

Dim picnr As String ' picture001
Dim picdate As String ' 07-13-2010
Dim pictime As String ' 08-15-43


Thanks for any help!
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Code:
Sub test()

Dim picnr As String ' picture001
Dim picdate As String ' 07-13-2010
Dim pictime As String ' 08-15-43

Dim fName As String

fName = "\BryceCanyon\canon-picture001-roll-nr3__07-13-2010_08-15-43.jpg"

picnr = Split(fName, "-")(1)
picdate = Split(fName, "_")(2)
pictime = Split(Split(fName, "_")(3), ".")(0)

MsgBox picnr & " // " & picdate & " // " & pictime

End Sub
 
Upvote 0

Forum statistics

Threads
1,215,480
Messages
6,125,049
Members
449,206
Latest member
Healthydogs

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top