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

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
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,737
Messages
6,126,562
Members
449,318
Latest member
Son Raphon

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