Top "Wildcard" questions

A wildcard character is any character that can be used to substitute for any other character or characters in a string.

VirtualHost with wildcard VirtualDocumentRoot

I'm trying to create a fallback for my virtual hosts. My configuration looks like this: # Fetch all pre-defined hosts Include "…

apache2 xampp wildcard virtualhost directoryindex
Can I use shell wildcards to select filenames ranging across double-digit numbers (e.g., from foo_1.jpg to foo_54.jpg)?

I have a directory with image files foo_0.jpg to foo_99.jpg. I would like to copy files foo_0.jpg …

bash shell wildcard
How do you count cells with a certain partial string?

I have cells with dates that are formatted in different ways (and too messy to re-format, also lots of data) …

string google-sheets count wildcard google-sheets-formula
UNIX 'ls' command - wildcard 'OR' operator

I have a directory with timestamped files in the format: processAlpha20120618.txt processAlpha20120619.txt processAlpha20120620.txt processBeta20120618.txt processBeta20120619.txt …

string shell unix wildcard ls
Django ERROR (EXTERNAL IP): Invalid HTTP_HOST header: '*.domain.com'

I've create a Django (1.7) web application with a Nginx, Gunicorn, Django stack and recently I've started to get a number …

django nginx dns wildcard http-host
Wildcard in Hadoop's FileSystem listing API calls

tl;dr: To be able to use wildcards (globs) in the listed paths, one simply has to use globStatus(...) instead …

java hadoop hdfs wildcard
Using Web.SiteMap with Dynamic URLS (URL Routing)

I would like to match "approximate" matches in Web.SiteMap The Web.Sitemap static sitemap provider works well, except for …

mapping url-routing sitemap wildcard sitemapnode
Wildcards in variable path with Powershell

I would like in my script to use wildcard in variable like this : $TARGET = "\\MACHINE1\c$\ProgramData\Test\12.*\Data\" The …

variables powershell path wildcard asterisk
Lucene query: bla~* (match words that start with something fuzzy), how?

In the Lucene query syntax I'd like to combine * and ~ in a valid query similar to: bla~* //invalid query Meaning: …

lucene wildcard fuzzy-search
Can I use wildcards in "IN" MySQL statement?

I would like to run something like: select * from table where field in ("%apple%", "%orange%") Is there a way? Or …

sql mysql wildcard