A wildcard character is any character that can be used to substitute for any other character or characters in a string. A wildcard character is any character that can be used to substitute for any other character or characters in a string.
0
votes
1answer
180 views
Python ElementTree find() using a wildcard?
I am parsing an XML feed in python to extract certain tags. My XML contains namespaces and this results in each tag containing a namespace followed by tag name.
Here is the xml:
<?xml ...
-1
votes
4answers
141 views
mysql - select email from xyz where email=“%gmail.com”
Is there a way I can select from the database the entries with certain data? I got a lot of email addresses in the database but I want to select only from one domain. Is it even possible?
0
votes
2answers
99 views
Delete wildcard in perl
I am a new to Perl, but I thought the following should work. I have the following snippet of a larger perl script
@mylist = ("${my_dir}AA_???_???.DAT", "${my_dir}AA???.DAT");
foreach my $list ...
2
votes
2answers
77 views
stopping Linux shell while it is resolving (i.e. expanding) wildcards
In a typical Linux shell, you can use Ctrl+c to stop execution of a command. If you have started a run that uses wildcards (such as *) to find all files with a certain pattern, and if you have many ...
1
vote
1answer
2k views
Is it possible to use wildcards for Notepad++ search & replace
I so hope you can do this, I have over a 1000 occurrences of a of an instance that slightly changes through out the document that needs to be changed slightly and I was wondering if I can do this in ...
0
votes
0answers
13 views
Can i do Wild Card Search within CKEDITOR.? [closed]
Is it possible to do an Wild Card search inside the CKEditor.? Is it so then guide me how to do that..?
2
votes
2answers
148 views
How to execvp ls *.txt in C
I'm having issues execvping the *.txt wildcard, and reading this thread - exec() any command in C - indicates that it's difficult because of "globbing" issues. Is there any easy way to get around ...
0
votes
1answer
56 views
How to count instances of a SET of characters in SQL Column
I need to count instances of a set of characters (aeıioöuü) in each row.
For example:
"linebreak" should return 4.
"indent" should return 2
"quote" should return 3
I can count one single character ...
1
vote
1answer
135 views
Struts Wildcard vs Tiles Wildcard NoSuchDefinitionException
am new here and my englisch is not fine :(
I use tiles in my struts2 project to generate dynamically my layouts. The problem is, i have to many redundancies in my tiles.xml file. So i deciced to use ...
3
votes
1answer
111 views
Key-Value parameter matching with wildcards
I have a large amount of Key-Value parameters that map to a file path. Most have the following form
filepath : /some/path
param_name_1 => 1234
param_name_2 => qwerty
But others can contain ...
1
vote
1answer
81 views
MySQL Behaviour of Wildcard LIKE matching
I have the following data in TableA...
ID | Text
---------------------------------------------
1 | let's find this document
2 | docments are closed
...and if I do the following select...
select ...
0
votes
3answers
42 views
regex - optional and needed
I was trying some things with regex'es and I was wondering how to do the following:
Accept:
http://google.com
https://google.com
http://google.com/
https://google.com/
http://google.com/*
...
0
votes
1answer
119 views
Multiple criteria in Elasticsearch request
I am using the below POST request in my Ajax call however I am not able to add additional search criteria. I also want to be able to search on a number of other fields specifically with wildcards. ...
0
votes
3answers
154 views
Finding Tuple in list with three items matched
I need to get the index of a Tuple<string,string,string,string> in a List with three given items, but it doesn't matter what the fourth is. Ex:
Listoftuples.IndexOf(new ...
1
vote
1answer
300 views
Trying to understand the SML option structure
Okay so I started learning SML for a class, and I'm stuck with the option structure.
What I have so far for this example:
datatype suit = spades|hearts|clubs|diamonds;
datatype rank = ...
0
votes
0answers
40 views
Snowball and Lucene
I'm using the Lucene Search Engine with SnowballAnalyzer(German) in my Project(C#).
But I have some problems with the stemming of a query which contains a Wildcard like ' * '.
For example:
I ...
0
votes
2answers
75 views
My sql:how to use Wildcard in Subquery?
example:
SELECT country
FROM data
WHERE city LIKE
(SELECT LEFT ('jakartada',7));
it's working nicely but if i give delimiter with value:4 ,i must give wildcard
like this ---> "%string%" ,where ...
0
votes
1answer
46 views
want to search for astrix in findstr but character is recognised as wildcard instead
Iv got a simple findstr function (windows batch) however im trying to search for the actual astrix character in a text document. Because the * character is also used as a wildcrad function my program ...
1
vote
2answers
115 views
wildcard in Makefile (what does $(1) mean?)
In the following line,
selected = $(firstword $(foreach R,$(REPS),$(wildcard $(R)/$(1))))
what does $(1) mean?
I tried to see the value of $(1) by
$(info "dollar one is " $(1))
And it does ...
0
votes
1answer
41 views
Adding object to a list of supertypes with wildcards [duplicate]
Possible Duplicate:
Understanding wildcards in Java generics
I have a class Car which is extended by Chevrolet. Then you can see quite normal piece of code:
List<? extends Chevrolet> ...
0
votes
3answers
102 views
Java: Help me understand: How to use interface methods on a bounded wildcard field?
I'm having trouble understanding why I can use bounded wildcards like this, if I can't (seem to) make any (genericly-typed) use of it.
If I have a wildcard field in a class, I can't use any of the ...
0
votes
1answer
196 views
Makefile rule that depends on all files under a directory (including within subdirectories)
One rule in my Makefile zips an entire directory (res/) into a ZIP file. Obviously, this rule needs to execute when any file under the res/ directory changes. Thus, I want the rule to have as a ...
0
votes
1answer
132 views
multiple text replace inside a string, while keeping the selected variable
I have a web script that creates a HTML page into a PHP string, then delivers it to the user. All of the pages are generated by index.php, with a unique url.
domain.host.com/index.php?loadpage=/BLAH
...
0
votes
3answers
188 views
SSL Certificate SAN or Wildcard?
I'm wanting to cover the a few domains with an SSL Certificate.
e.g.
portal.domain.com
app.domain.com
app1.domain.com
app2.domain.com
I'm a bit confused as to whether I can go for the cheaper ...
1
vote
1answer
205 views
Android SQLite wildcard to select character pattern
I am using an SQLite database in Android. I want to query the database using a query like
SELECT * FROM Persons WHERE City LIKE '%nes%'
which would return the city Sandnes based on the character ...
1
vote
1answer
72 views
Unzip Contents Based On Wildcard Negative Matching
I have the following folder contents in a zip archive:
ca_ES
cs_CZ
da_DK
de_CH
de_DE
el_GR
en_GB
es_ES
fi_FI
fr_FR
gl_ES
it_IT
lv_LV
mt_MT
nb_NO
nl_NL
pt_PT
ro_RO
sk_SK
sl_SI
sq_AL
sv_SE
tr_TR
vi_VN
...
1
vote
1answer
73 views
Creating wildcard subdomain doesn't work
I want created a wildcard subdomain for each user from mysql database. The subdomain works but the page is loading without the related files (css, js).
List of user page :
website.com/user/index.php
...
2
votes
2answers
152 views
Do You Need To Escape * Character in Java?
So I wrote a little section of code in a program of mine that uses the split method to parse out and sort the individual components held within a string. Below is a sample of the code:
String[] ...
0
votes
1answer
103 views
htaccess redirect rule needed for incorrect subdirectories with wildcards
I need help writing an htaccess redirect or rewrite rule (mod_rewrite.c) to handle the following situation:
http://www.mysite.com/archive/[YEAR]/archive/[YEAR]/[CORRECT-PATH]
should redirect to:
...
2
votes
1answer
90 views
English dictionary API that allows wild card look up
I would like to find a dictionary with API that allows me to look up words that match a wild card and a particular part of speech (noun/verb/adjective...), for example, give me a list of verbs that ...
1
vote
2answers
257 views
wild card (asterisk) in Windows batch
I have this command in my windows's script (.cmd file):
CALL mv *.exe foo.exe
The wildcard character doesn't seem to be be interpreted as a wildcard at all, because the when the script is executed, ...
0
votes
1answer
168 views
Wildcard search on specific terms using MultiFieldQueryParser
I am utilizing the Lucene.net version 3.0 API to create and search an index for my project. Each Document in my index has three Fields:
TransactionId
Agent
Lender
My requirements are this:
I ...
-1
votes
4answers
64 views
method argument suitable for adding to a upper-bound ArrayList
the following code is part of an abstract class which is meant to be subclassed to manage a specific kind of Shape. (it's actualy a repository for a specific class but that's not relevant now)
...
1
vote
2answers
134 views
Struts2: add a variable to all URLs
I'm working on an webapp where the user selects an account to work with, then all URLs they click thereafter refer to that account. Currently the active account is stored in the session, but that ...
-1
votes
1answer
91 views
Generics wildcard parameter lower bound to Object
It is possible to specify a wildcard type that has a lower bound to Object:
public void method(Collection<? super Object> c) {
// compiles, but ? can only be Object
}
Logically the ...
2
votes
4answers
1k views
SQL LIKE operator with parameters and wildcards
I have a query where I want to return all Clients that have a certain string in the name with wildcards on either side. So the input could be "Smith" and i want to return all things like "The John ...
2
votes
1answer
75 views
wildcard not working with css width
What is the problem of this wildcard?
div[id*='Form_Form_EditableTextField'] {
width:554px !important;
}
This works without any problem. Just for debug.
#Form_Form_EditableTextField1 {
...
0
votes
1answer
173 views
How to use Wildcards on node attributes in cypher queries in neo4j
I'm trying to create a search from query parameters in Neo4j, but seem to have trouble identifying the wildcard. "*" isn't working for wildcards on node attributes.
The code I have is below:
price ...
0
votes
2answers
84 views
“javac: file not found” if path is quoted
I built an application to compile and run java files and it was running completely ok.
Since it is the user to choose the path of java files to be compiled and executed, i quote the path, so that it ...
0
votes
2answers
206 views
How do I search for a five digit number in a string column?
What I'm trying to do is determine (Using Teradata SQL) if a person's zip code has accidently been put on an address line. I've looked on various forums and I can't find any similar questions.
...
0
votes
0answers
165 views
SSRS 2008 R2 SSL Configuration with IIS
Is it just me or is it really impossible to configure SSRS 2008 R2 with SSL wildcard certificate on the server also have IIS with some sites utilizing the same wildcard certificate? The closest I have ...
2
votes
2answers
82 views
Unifying lists of different length by concatenating atoms
Consider the following list:
[my,name,is,jack,baur]
I want to unify this to the following pattern:
[my,name,is,Name]
So that the variable Name has the value 'jack baur' in the end.
The ...
2
votes
1answer
85 views
Proper method for wildcard targets in GNU Make
I am trying to write a Makefile with my source and object files separated and I can't seem to figure out the proper way to accomplish this. I have two methods that work but I'm hoping someone can ...
1
vote
3answers
244 views
Java generics with unbounded wildcard?
I have an interface to convert object to string:
public interface Converter<T> {
String asString(T object);
}
And a map to store all available converters:
Map<Class<?>, ...
0
votes
1answer
77 views
regular expression help using smiliar with MYSQL wildcard(%) operator
Just want to ask help from regex experts. Here's my case:
In mysql, I can do text filtering using LIKE operator like this Changed STATUS from%PAID IN FULL which can search strings containing ...
4
votes
2answers
119 views
Class<? super T> in getSuperclass() Does it make sense?
Class<? super T> getSuperclass()
The getSuperclass() in Class class return a Class whose type is<? super T>, which mean that the type parameter of Class of the Super could be T or any ...
1
vote
3answers
77 views
Why we can instantiate Pair<T> but we can't with Pair<?>
So why can we able to instantiate Pair but we can't able to instantiate Pair
Pair<T> p=new Pair<T>();
VS
Pair<?> p=new Pair<?>();
I know that <?> mean unknown type ...
3
votes
3answers
128 views
Does an import wildcard import everything all the time?
I was working on a little Java program and was using arrays so I had done:
import java.util.Arrays;
Later I started expanding on what I had previously done and decided I wanted to get input from ...
0
votes
1answer
141 views
solr query does not find word
i have a field which contains
... Sie kennen zentrale Stationen des Lebenswegs Muhammads. • Sie ke ...
i've configured it like this
<fieldType name="text" class="solr.TextField" ...
1
vote
2answers
125 views
including wildcards in pexpect.run()
my terminal output is
$ setserial -g /dev/ttyS*
/dev/ttyS0, UART: unknown, Port: 0x03f8, IRQ: 4
/dev/ttyS1, UART: unknown, Port: 0x02f8, IRQ: 3
/dev/ttyS2, UART: unknown, Port: 0x03e8, IRQ: ...

