I have a series of files that are named in this way:
Filename_FileNumber_Description.htm
I need to load these files into an iFrame but the only information I have to work on is the filename and the filenumber. Of course the .htm is always at the end of the name.
This leaves me with:
iframe.src = Filename_Filenumber_ ..... .htm
I need to be able to use some kind of regular expression (perhaps similar to *.*) to match the filenames by their number, no matter what the description might be.
BTW: The description is all alphanumeric chars.
Could anyone help me please.
Filename_FileNumber_Description.htm
I need to load these files into an iFrame but the only information I have to work on is the filename and the filenumber. Of course the .htm is always at the end of the name.
This leaves me with:
iframe.src = Filename_Filenumber_ ..... .htm
I need to be able to use some kind of regular expression (perhaps similar to *.*) to match the filenames by their number, no matter what the description might be.
BTW: The description is all alphanumeric chars.
Could anyone help me please.