Jump to content

WildCards help.


Dampe
 Share

Recommended Posts

Hey there.

I'm looking for the syntax of joining multiple wildcards

For example

$scan = "*.bmp"

I want to make my $scan variable the wildcard value, but I want the value to support bmp and png

Just not sure how to put them into the one string.

Link to comment
Share on other sites

Usually you separate types with a semicolon - just like in Windows Search, so if you wanted to search for *.bmp and *.jpg, you'd use "*.bmp;*.jpg".

The same holds true for functions such as FileOpenDialog. From the help page for that function:

"Separate the file filters with a semicolon as shown in the example.

Multiple groups of filters are separated by a pipe "|"."

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...