A wildcard character is any character that can be used to substitute for any other character or characters in a string.
69
votes
8answers
11k views
Why is using a wild card with a Java import statement bad?
It is much more convenient and cleaner to use a single statement like
import java.awt.*;
than to import a bunch of individual classes
import java.awt.Panel;
import java.awt.Graphics;
import ...
60
votes
6answers
40k views
wildcard * in CSS for classes
I have these divs that I'm styling with .tocolor, but I also need the unique identifier 1,2,3,4 etc. so I'm adding that it as another class tocolor-1.
<div class="tocolor tocolor-1"> tocolor ...
36
votes
11answers
51k views
How to find files that match a wildcard string in Java?
This should be really simple. If I have a String like this:
../Test?/sample*.txt
then what is a generally-accepted way to get a list of files that match this pattern? (e.g. it should match ...
34
votes
3answers
31k views
Find all elements on a page whose element ID contains a certain text using jQuery
I'm trying to find all elements on a page whose element ID contains a certain text. I'll then need to filter the found elements based on whether they are hidden or not. Any help is greatly ...
30
votes
1answer
2k views
Why does “_” (underscore) match “-” (hyphen)?
I have to look for a PDF manual using this query:
root@localhost:test> select * from a where name like '%taz_manual%.pdf%';
+--------------------+------------------+-------------+
| name ...
25
votes
6answers
26k views
Check if a file exists with wildcard in shell script
I'm trying to check if a file exists, but with a wildcard. Here is my example:
if [ -f "xorg-x11-fonts*" ]; then
printf "BLAH"
fi
I have also tried it without the double quotes.
23
votes
3answers
25k views
python get a filtered list of files in directory
I am trying to get a list of files in a directory using python, but I do not want a list of ALL the files.
What I essentially want is the ability to do something like the following but using python ...
19
votes
4answers
466 views
What's the purpose behind wildcards and how are they different from generics?
I'd never heard about wildcars until a few days ago and after reading my teacher's Java book, I'm still not sure about what's it for and why would I need to use it.
Let's say I have a super class ...
19
votes
6answers
14k views
Using wildcard for classpath?
G'day everybody,
I have been using so many 3rd party libraries(jar files) that my CLASSPATH is completely messed up as i have to include the path for every single jar file that i use.
...
18
votes
5answers
387 views
How do generics of generics work?
While I do understand some of the corner-cases of generics, I'm missing something with the following example.
I have the following class
1 public class Test<T> {
2 public static void ...
18
votes
3answers
2k views
Multiple wildcards on a generic methods makes Java compiler (and me!) very confused
Let's first consider a simple scenario (see complete source on ideone.com):
import java.util.*;
public class TwoListsOfUnknowns {
static void doNothing(List<?> list1, List<?> list2) ...
15
votes
4answers
6k views
PHP file_exists and wildcard
Is there a way to write the PHP file_exists function so that it searches a directory for a file with an arbitrary extension. For instance, suppose I knew that a file were called "hello", but I didn't ...
14
votes
1answer
191 views
Is wildcard import bad in Scala with respect to incremental compilation?
In Scala, is it bad, from the point of view of efficacy and speed of incremental compilers (sbt, sbt in Eclipse, IntelliJ), to use wildcard imports? Does it adversely affect the way these incremental ...
13
votes
11answers
19k views
SQL Server using wildcard within IN
Since I believe this should be a basic question I know this question has probably been asked, but I am unable to find it. I'm probably about to earn my Peer Pressure badge, but I'll ask anyway:
Is ...
13
votes
2answers
3k views
SQL LIKE with no wildcards the same as '='?
I know this is a pretty basic question, and I think I know the answer...but I'd like to confirm.
Are these queries truly equivalent?
SELECT * FROM FOO WHERE BAR LIKE 'X'
SELECT * FROM FOO WHERE BAR ...
13
votes
4answers
2k views
Bash: what expands to all files in current directory recursively
I know **/*.ext expands to all files in all subdirectories matching *.ext, but what is a similar expansion that includes all such files in the current directory as well?
13
votes
2answers
3k views
How to implement glob in C#
I don't know if it's legit at StackOverflow to post your own answer to a question, but I saw nobody had asked this already. I went looking for a C# Glob and didn't find one, so I wrote one that ...
12
votes
8answers
14k views
Wildcard search for LINQ
I would like to know if it is possible to do a wildcard search using LINQ.
I see LINQ has Contains, StartsWith, EndsWith, etc.
What if I want something like %Test if%it work%, how do I do it?
...
12
votes
1answer
7k views
doctrine2 dql, use setParameter with % wildcard when doing a like comparison
I want to use the parameter place holder - e.g. ?1 - with the % wild cards. that is, something like: "u.name LIKE %?1%" (though this throws an error). The docs have the following two examples:
1.
// ...
12
votes
5answers
8k views
What is the equivalent of java wildcards in C# generics
I'm developing an application where I the need to invoke a method of a generic class and I don't care about the instances actual type. Something like the following Java code:
public class ...
12
votes
5answers
428 views
Java generics, nested collection of wildcard
This compiles (1.6)
List<? extends Object> l = new ArrayList<Date>();
But this does not
List<List<? extends Object>> ll = new ArrayList<List<Date>>();
with ...
12
votes
2answers
335 views
C# generic wildcard or how to hold a reference to unknown generic inheritance
OK, so here is the situation. I've got a FlexCollection<T> class, which purpose is to hold a list of some specialization of FlexItem, therefore:
public class FlexCollection<T> where T : ...
11
votes
5answers
3k views
How to use the .* wildcard in bash but exclude the parent directory (..)?
There are often times that I want to execute a command on all files (including hidden files) in a directory. When I try using
chmod g+w * .*
it changes the permissions on all the files I want (in ...
11
votes
7answers
16k views
Wildcard Subdomains
I know there have been a few threads on this before, but I have tried absolutely everything suggested (that I could find) and nothing has worked for me thus far...
With that in mind, here is what I'm ...
11
votes
2answers
1k views
How to EasyMock a call to a method that returns a wildcarded generic?
We're looking at switching to Spring 3.0 and running into problems with the intersection of Spring 3.0, EasyMock, and Java Generics.
In one place, we're mocking a Spring 3.0 AbstractBeanFactory, ...
11
votes
1answer
136 views
Understanding scala's _ vs Any/Nothing
If a class has a convariant type parameter such as Iterable[+A], is there any difference between declaring
def foo(bar: Iterable[_])
and
def foo(bar: Iterable[Any])
?
If a class has a ...
10
votes
12answers
15k views
How to implement a SQL like 'LIKE' operator in java?
I need a comparator in java which has the same semantics as the sql 'like' operator.
For example:
myComparator.like("digital","%ital%");
myComparator.like("digital","%gi?a%");
...
10
votes
3answers
9k views
jQuery: select all inputs with unique id (Regex/Wildcard Selectors)
I have some textboxes on a webform that have ids like this:
txtFinalDeadline_1
txtFinalDeadline_2
txtFinalDeadline_3
txtFinalDeadline_4
In my jQuery how do I find all of those in order to assign a ...
10
votes
5answers
843 views
Signature of Collections.min/max method
In Java, the Collections class contains the following method:
public static <T extends Object & Comparable<? super T>> T min(Collection<? extends T> c)
Its signature is ...
10
votes
3answers
81 views
Can a regular expression be tested to see if it reduces to .*
I'm developing an application where users enter a regular expression as a filter criterion, however I do not want people to be (easily) able to enter .* (i.e. match anything). The problem is, if I ...
10
votes
8answers
535 views
Fast(er) method for wildcard searching of 250K+ strings
I have an English dictionary in a MySQL database with just over 250K entries, and I'm using a simple ruby front-end to search it using wildcards at the beginning of the strings. So far I've been doing ...
10
votes
5answers
332 views
Java generics with wildcard compile in Eclipse, but not in javac
As a follow up to Java generics compile in Eclipse, but not in javac, I post another snippet which compiles and runs fine in Eclipse, but raises a compilation error in javac. (This prevents the ...
10
votes
1answer
727 views
Possible bug in VB.NET 'Like' operator?
Why is it that the following evaluates as True?
Dim result = "b" Like "*a*b"
Thanks.
EDIT:
To generalize this a bit, the following returns True:
"String1" Like ...
10
votes
1answer
1k views
Broken wildcard expansion for Java7 commandline on Windows(7?)
I observe a strange behavior of wildcard expansion behavior for Java7 on Windows.
For centuries there was a clean difference between "*" versus *.
Seems this it not longer true for Java7 (at least on ...
9
votes
9answers
5k views
How to determine if a List is sorted in Java?
I would like a method that takes a List<T> where T implements Comparable and returns true or false depending on whether the list is sorted or not.
What is the best way to implement this in ...
9
votes
3answers
9k views
Python search file using wildcard
If I want get a list of filenames with a search pattern with wildcard. Like:
getFilenames.py c:\PathToFolder\*
getFilenames.py c:\PathToFolder\FileType*.txt
getFilenames.py ...
9
votes
3answers
662 views
In Scala, what is the difference between using the `_` and using a named identifier?
Why do i get an error when I try using _ instead of using a named identifier?
scala> res0
res25: List[Int] = List(1, 2, 3, 4, 5)
scala> res0.map(_=>"item "+_.toString)
<console>:6: ...
9
votes
4answers
4k views
Is there a wildcard expansion option for .net apps?
I've used the setargv.obj linking for Expanding Wildcard Arguments in the past for a number of C and C++ apps, but I can't find any similar mention for .net applications.
Is there a standard way to ...
8
votes
2answers
285 views
How to use C# generics without wildcards? [duplicate]
Over in java I'm pretty used to working with generics and the wildcard. Things like: List<? extends Animal>. This allows you to have a collection of subtypes of Animals and run generic ...
8
votes
5answers
8k views
Full text catalog/index search for %book%
I'm trying to wrap my head around how to search for something that appears in the middle of a word / expression - something like searching for "LIKE %book% " - but in SQL Server (2005) full text ...
8
votes
4answers
659 views
Recursive function to match a string against a wildcard pattern
So I've been trying to solve this assignment whole day, just can't get it.
The following function accepts 2 strings, the 2nd (not 1st) possibly containing *'s (asterisks).
An * is a replacement for a ...
8
votes
2answers
6k views
SOLR - wildcard search with capital letter
I have a problem with SOLR searching. When i`am searching query: dog* everything is ok, but when query is Dog*(with first capital letter), i get no results. Any advice? My config:
<fieldType ...
8
votes
4answers
5k views
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: Please match words that begin with "bla" or something similar to "bla".
Update:
...
8
votes
3answers
1k views
Wildcards vs. generic methods
Is there any practical difference between the following approaches to print all elements in a range?
public static void printA(Iterable<?> range)
{
for (Object o : range)
{
...
8
votes
3answers
2k views
Returning a list of wildcard matches from a HashMap in java
I have a Hashmap which may contain wildcards (*) in the String.
For instance,
HashMap<String, Student> students_;
can have John* as one key. I want to know if JohnSmith matches any ...
8
votes
2answers
162 views
Is it possible to impose an upper bound (super X) on a named Generic type?
Suppose I have the following static method and interface (List is java.util.List). Note that the static method enforces a "super Foo" on the wildcard type of the list.
public class StaticMethod {
...
7
votes
3answers
2k views
C# generics - without lower bounds by design?
I was reading an interview with Joshua Bloch in Coders at Work, where he lamented the introduction of generics in Java 5. He doesn't like the specific implementation largely because the variance ...
7
votes
3answers
6k views
Pattern matching using a wildcard
How do I identify a string using a wildcard?
I've found glob2rx, but I don't quite understand how to use it. I tried using the following code to pick the rows of the data frame that begin with the ...
7
votes
4answers
170 views
Wildcard equivalent in C# generics
Let's say I have a generic class as follows:
public class GeneralPropertyMap<T>
{
}
In some other class I have a method that takes in an array of GeneralPropertyMap<T>. In Java, in ...
7
votes
3answers
2k views
Java generics - implementing higher order functions like map
I decided to write some common Higher Order Functions in Java (map, filter, reduce, etc.) that are type safe via generics, and I'm having problems with wildcards matching in one particular function.
...

