Tagged Questions
A wildcard character is any character that can be used to substitute for any other character or characters in a string.
43
votes
2answers
3k views
Java Generics: What is PECS?
I came across PECS (short for Producer extends and Consumer super) while reading on Generics.
Can someone explain to me how to use PECS to resolve confusion between extends and super?
Thanks in ...
36
votes
1answer
8k views
Java Generics Wildcarding With Multiple Classes
I want to have a Class object, but I want to force whatever class it represents to extend class A and implement interface B.
I can do:
Class<? extends ClassA>
Or:
Class<? extends ...
22
votes
1answer
138 views
Why does “_” (underscore) match “-” (hyphen)?
I have to look for some pdf manual using this query:
root@localhost:test> select * from a where name like '%taz_manual%.pdf%';
+--------------------+------------------+-------------+
| name ...
19
votes
3answers
8k views
Java Generics (Wildcards)
I have a couple of questions about java generics wildcards:
1) whats the difference between
List<? extends T>
and
List<? super T>
2) What is a bounded wildcard and what is an ...
18
votes
3answers
15k 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 ...
17
votes
4answers
297 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 ...
17
votes
8answers
19k 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 ...
15
votes
3answers
856 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) ...
12
votes
2answers
2k 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 ...
11
votes
5answers
146 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 ...
10
votes
3answers
78 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
1answer
126 views
Why does java.lang.Class's getInterfaces() method return Class<?>[] and not Class<? super T>[]?
(To clear up the question, 'T' refers to a type parameter declared in Class)
Just as an example, please review the following application:
public class TestClass {
interface InterfaceA{}
...
10
votes
5answers
342 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
2answers
626 views
Question on Java Generics Bounded Wildcard
Is there a difference between
1) <N extends Number> Collection<N> getThatCollection(Class<N> type)
and
2) Collection<? extends Number> getThatCollection(Class<? extends ...
9
votes
3answers
173 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 ...
9
votes
4answers
2k 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 ...
9
votes
1answer
429 views
Inferred wildcard generics in return type
Java can often infer generics based on the arguments (and even on the return type, in contrast to e.g. C#).
Case in point: I've got a generic class Pair<T1, T2> which just stores a pair of ...
9
votes
2answers
1k 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 ...
9
votes
5answers
10k 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 ...
8
votes
2answers
118 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 {
...
8
votes
3answers
4k 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 ...
8
votes
3answers
277 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: ...
8
votes
5answers
669 views
Unbounded wildcards in Java
Is there ever a difference between an unbounded wildcard e.g. <?> and a bounded wildcard whose bound is Object, e.g. <? extends Object>?
I recall reading somewhere that there was a ...
7
votes
3answers
131 views
Can all wildcards in Java be replaced by non-wildcard types?
I can't find any example where wildcards can't be replaced by a generic.
For example:
public void dummy(List<? extends MyObject> list);
is equivalent to
public <T> void ...
7
votes
3answers
623 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.
...
7
votes
3answers
158 views
In Java, why can't an array be a Type Variable's bound, but can be a Wildcard's bound?
In Java, why can't an array be a Type Variable's bound, but can be a Wildcard's bound?
You can have:
List< ? extends Integer[] > l;
but you can't have:
class MyClass< T extends Integer[] ...
7
votes
4answers
673 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 ...
7
votes
4answers
2k 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:
...
7
votes
4answers
429 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?
7
votes
2answers
1k views
Scala's existential types
A bit more specific than this question, can someone tell me what is the difference between Scala's existential types and Java's wildcard, prefereably with some illustrative example?
In everything ...
7
votes
5answers
4k 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 ...
6
votes
4answers
179 views
Java wildcard strange behaviour when class is generic
I thought that i have some good understanding of Java generics.
This code DOES NOT COMPILE and I know why.
We can pass to test method only List of type Animal or its super type (like List of ...
6
votes
4answers
6k views
wildcard * in CSS
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 ...
6
votes
1answer
437 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, ...
6
votes
3answers
301 views
Java Generic Collection of Generic Type with Bounded Wildcard
Please help me with this:
If Lion IS-A Animal and given Cage<T>:
Cage<? extends Animal> c = new Cage<Lion>(); // ok,
but
Set<Cage<? extends Animal>> cc = new ...
6
votes
3answers
1k 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 ...
6
votes
4answers
775 views
Fastest way to bruteforce a string using a DOS wildcard
This problem is similar to blind SQL injections. The goal is to determine the exact value of a string, and the only test you can do is to see if a DOS-style wildcard (? = any character, * = any number ...
6
votes
3answers
7k views
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 one thing. IT'S STATIC!
So, if I would have to have a sitemapnode for each ...
5
votes
1answer
391 views
How to search different file types using FindFirst?
In my Application I use the following procedure to recursively scan any folder and subfolders, if the folder contains Text Files (*.txt) I add the filename to a TStringList defined in my procedure:
...
5
votes
2answers
325 views
Wildcard subdomains for a single codeigniter application
Basically I'm trying to make a codeigniter app with localization subdomains such that if I access:
ca.site.com -> it would run the same system but shows canadian content.
us.site.com -> still runs ...
5
votes
5answers
236 views
Use of generic wildcard instead of interface
If you wanted to store an array of objects of type MyInterface, are the following both acceptable and if so when would you use the second form over the first?
i) Using only an interface:-
...
5
votes
4answers
128 views
Match '%' sign when searching in MySQL database
I would like to match this 'wildcard %' in MySQL.
I tried using escape \% and it is not working.
5
votes
1answer
1k 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.
// ...
5
votes
2answers
188 views
How to get a list of files matching a filemask (wildcard) in Clojure?
Is there an easy way to get a list of files matching a specified filemask? By filemask I mean classic wildcard, not regexp.
I can use file-seq and then filter with regexp created from a wildcard. ...
5
votes
8answers
1k 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 ...
5
votes
3answers
158 views
Java generics question with wildcards
Just came across a place where I'd like to use generics and I'm not sure how to make it work the way I want.
I have a method in my data layer that does a query and returns a list of objects. Here's ...
5
votes
3answers
334 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)
{
...
5
votes
2answers
180 views
what is the better way to search in millions of file names with wildcard(GLOB) support
i am working on a small search engine to display a matching file names with full path. and important thing is that i need to provide wildcard(GLOB) search like *.doc or *list*.xlx or *timesheet* or ...
5
votes
2answers
729 views
Find common chars in array of strings, in the right order
I spent days working on a function to get common chars in an array of strings, in the right order, to create a wildcard.
Here is an example to explain my problem. I made about 3 functions, but I ...
5
votes
3answers
1k views
java Runtime.getRunTime().exec & wildcards?
i'm trying to remove junk files by using
Process p = Runtime.getRuntime().exec();
it works fine as long as i do not use wildcards, i.e. this works:
Process p = Runtime.getRuntime().exec("/bin/rm ...