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
2answers
59 views
Working Around SQL Replace Wildcards
I know that I cannot use a wildcard in a MySQL replace query through phpMyAdmin. But, I need some kind of workaround. I'm very open to ideas. Here's the skinny:
I have about 2,000 pages in a MySQL ...
1
vote
3answers
102 views
Proximity searching phrases with root expanders in Solr or ElasticSearch (especially websolr or bonsai.io)?
I'm trying to select a search tool for a large project, and I'd be interested to know if this use case was supported by Solr or ElasticSearch.
My customers are interested in conducting relatively ...
1
vote
1answer
88 views
Python: regex a string with a wildcard in it
What I would like to do is to allow the user to input something such as: "Torsion ? Group", wildcard and all (the wildcard being a whole word) and a true or false returned depending on whether found ...
0
votes
2answers
55 views
MySQL Query with variable wildcards
If I execute my PHP code:
$serName = $_GET['username'];
// Code for sanitation here
// [...]
$sql = "SELECT NAME FROM PLAYERS WHERE NAME LIKE '%$serName%'";
I get division error, how do I use a ...
0
votes
3answers
54 views
Why to define multiple imports?
Consider the following import statements:
import java.io.*; // Make sense
import javax.servlet.*;
import javax.servlet.http.*;
Isn't it like that we have included "import javax.servlet.;" and ...
0
votes
1answer
72 views
Expand wildcard in program's arguments
I have batch file which attempts to launch a java application:
java -jar myProgram*.jar
I would like the batch file to evaluate the wildcard * in order to find the program regardless of version ...
0
votes
2answers
43 views
SQL Wildcards using %%%
I'm wondering what problems I may not foresee by using this query:
SELECT *
FROM tanswer
WHERE CourseID LIKE '%%%' AND Q39 LIKE 'p' AND Q42 LIKE 'a' AND Q43 LIKE 'a'
In particular using '%%%'.
...
0
votes
1answer
77 views
Python: Regex a dictionary using user input wildcards
I would like to be able to search a dictionary in Python using user input wildcards.
I have found this:
import fnmatch
lst = ['this','is','just','a','test', 'thing']
filtered = fnmatch.filter(lst, ...
0
votes
2answers
51 views
How to tell bash to specifically escape a wildcard in a Python script
I have a script. It takes arguments, but I would like it, when it receives the string "*", to autocomplete it to a matching string in a list variable.
Unfortunately, this is impossible without the ...
0
votes
1answer
95 views
Get all Terms of ConstantsScoreQuery using Lucene.NET 3.0.3
i am using Lucene.Net v3.0.3 with C# and have an issue retrieving all Terms from a ConstantScoreQuery.
The Method ExtractTerms seems to be uncoded.
The goal is to get all Terms matching a ...
1
vote
1answer
40 views
shopt -s extglob not working
I am running my script on distant server. Here is header of my .sh script:
#!/bin/bash
shopt -s extglob;
#turns on extended globbing features ('!' can then be used to exclude file names)
echo `ls ...
3
votes
3answers
107 views
Delete all files except files with no extension in command line
I have an application that dumps logs to a folder. It writes the files the most recent file without an extension and each old version gets a .1, .2, .3, etc. appended to the end.
Example:
Filename ...
0
votes
1answer
76 views
Use recursion to match Strings with wildcards
Sorry if this is long but please bear with me. I'm trying to check, with recursion, if 2 strings are the same (which I was able to do by essential chopping off parts of the String) and have special ...
0
votes
4answers
389 views
jQuery wildcard selector
I want to select all the elements that have attribute starting with data-something-
For example
<span data-something-random="test">span 1</span>
<span data-nope="nope">span ...
0
votes
1answer
20 views
Prevent Non-Existent Directories From Loading Wildcard Files
I am looking to prevent URLs for directories that don't exist from loading files with the same basename. For example http://domain.com/test/ is loading test.php. The test directory does not exist, but ...
-1
votes
2answers
28 views
Using wildcard in table data
Using MYSQL I have a table where the data has wildcards. Example...
|ID | Model |
|1 | dv209% |
I'm tryinh to write a sql query that will find row 1 when model='dv209AWW' or ...
7
votes
2answers
269 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 ...
1
vote
1answer
43 views
How can I represent a key value structure in Apache Solr efficiently
I have a structure of names and dates, that are stored in a log table. They represent user actions and when they did that.
Name Date
John A. 2013-04-01
Leev B. 2013-04-02
Anse E. ...
0
votes
2answers
94 views
Wild Card % Giving an Error in a SQL Query
This Oracle SQL query written in c# is giving me the following error : invalid character
qur = " select * from emp where name LIKE '%" + TextBox1.Text + "%'";
How can I solve this?
1
vote
4answers
405 views
unix 'ls' command with wildcard input - equivalent in java 6
I need an equivalent behaviour in java for this command in Unix cli:
ls /data/archive/users/*/*.xml
Which outputs me:
/data/archive/users/2012/user1.xml
/data/archive/users/2013/user2.xml
Is there ...
0
votes
2answers
69 views
Using wildcard inside case statement in bash
I'm making a simple bash script. It accepts 2 options (-d and -f). I would like to allow also the long version of this options (-directory and -file). I tried using the curly brackets wildcard but it ...
-4
votes
1answer
80 views
c++ compare characters as if they were wild cards [closed]
I'm probably not saying this correctly but how would I go about making a program that does spell checking by comparing some string segments into wild cards?
For example if the word is written ...
0
votes
1answer
43 views
Wildcard Search in XElement
I am using XElement to search a XML document that a user selects through openfiledialog.
Here is the code:
private void dothis()
{
string query;
XElement xml = ...
0
votes
0answers
51 views
Imports and wildcard imports of Symbols in Scala
I have a list of Symbols representing packages, objects and classes and want to import them in a macro context.
For classes and objects, this would mean a wildcard import and for classes it would ...
3
votes
2answers
88 views
Inno Setup - Setting DefaultDir using wildcard registry entry?
I've recently started using Inno Setup to try and create a simple .exe installer for a game modification.
I've got the installer working fine for the most part, but it's a little basic at the moment. ...
0
votes
2answers
31 views
How to use wildcard in PDO multi-word query?
The project I am working on requires a multi-word search... just as an example search 'Sprint Apple iPhone'. If any one of these words matches a column in my database, the contents of the entire row ...
1
vote
1answer
72 views
Wordpress Multisite stops old subdomains working
I followed the instructions for setting up Wordpress multisite using subdomains on a Mediatemple DV server with wildcard DNS and got it working fine, however, I had previously hosted subdomains setup ...
-1
votes
3answers
51 views
What should be the return type of following method?
class A {}
class B extends A{}
class C extends B{}
public class Test {
public List<? extends B> ring(){
return ???
}
}
Please tell me, which of the below can be legal return type ...
7
votes
4answers
151 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 ...
1
vote
1answer
81 views
Confusion with Java generics and subclassing
I have the following:
An abstract class BaseScore
LevelScore which is a subclass of BaseScore
I then have:
An abstract class BaseScoreRecord
public abstract class BaseScoreRecord<T extends ...
0
votes
1answer
87 views
How do I create subdirectories with wildcard names, Linux
I need to make a few sub directories, but the names need to completely be wildcards.
Ex: *** ???
How do I eliminate their special meaning? I thought it was just quotes, but it does not seem to be ...
0
votes
0answers
42 views
XCOPY to different folder each day
How can I script/batch XCOPY to backup a network share to a different folder each time it runs with a timestamp? I want to take a backup of a directory each night and have an additional copy each ...
1
vote
2answers
38 views
Between… And… To work without values
I've tried to do this in a million different ways. At first I couldn't get it to work at all, but now I've managed to get it to work if I put in values.
What I need to happen is for my query to ...
4
votes
4answers
90 views
Practical usage of wildcard generics in Java
I recently had an exam on Java, and there was a wide section about wildcard generics in Java. However, there is very little said about their usage in practice. When should we use them? Let's see a ...
0
votes
1answer
50 views
autohotkey wildcard read loop
I want one script to command several computers to break up a highly distributable workload. In order to distribute the workload I put half of the task labels in one file, and half of the tasks in ...
0
votes
3answers
81 views
How can I instantiate an array of Stacks of type int?
I am trying to create an array of stacks, in which each stack within the array is of type int.
If I create the array like this: Stack<Integer>[] numbers = new ...
0
votes
1answer
198 views
The version specified for the 'file version' is not in the normal 'major.minor.build.revision' format in .NET
I am trying to set my AssemblyVersion and AssemblyFileVersion attributes in my project like so:
[assembly: AssemblyVersion("3.0.*")]
[assembly: AssemblyFileVersion("3.0.*")]
but I get this warning:
...
0
votes
0answers
31 views
Handlebars IF value contains x.*
I have an issue with some JSON I'm parsing into a template. Essentially, I'm constructing a query via a simple web interface, pulling back data in JSON format, and controlling the data/template with ...
0
votes
3answers
93 views
sql sentence with wildcards and null values
i got 4 combo boxes with values and could also be wildcards '%'.
As you know the NULL values are not returned.
I used the (COLUMN_NAME LIKE 'VALUE' OR COLUMN_NAME IS NULL), it worked in some way but ...
0
votes
1answer
47 views
Regular search works but when I try to add a Wildcard in the mix, no result
So I have successfully created a search box where it is linked to my MS Database and it returns a search, but I am running into some problems right now when I try to implement Wildcard into the query. ...
3
votes
1answer
107 views
Is a mysql LIKE statement with an escaped string containing unescaped wildcards '%' (percent) or '_' (underscore) vulnerable?
Let's say we have the following code (for some kind of search or similar):
$stmt = $pdo->prepare("SELECT * FROM users WHERE username LIKE ?");
$stmt->execute(array('%' . $username . '%'));
...
0
votes
3answers
85 views
Wildcard in variable, Shell bash, how to do ? Variable=$variable2*
For me it worked:
diretorio=$(echo 'test 123'*)
but not worked when i used variable in quotes
Var2="test 123"
diretorio=$(echo '$Var2'*)
How to solve it?
1
vote
5answers
108 views
Matching string with shell-style wildcards (e.g., *)
Is it possible to use a wildcard in an if statement?
My code:
* = wildcard
if ($admin =='*@some.text.here') {
}
$admin will be one of these:
xvilo@some.text.here
bot!bot@some.text.here
...
0
votes
1answer
129 views
How to configure woocommerce to work with wildcard certificate and wp multisite?
I have wordpress multisite version 3.5 and woocommerce 2.0.2 with wildcard certificate.
I need to know if it is possible to force ssl on checkout page using wildcard ssl.
When I force ssl on the ...
1
vote
3answers
51 views
java generic ambiguity
If there is a generic type node<E> with two operations like setData(E Type) and E getData() and let s0 be a instance of node by node<? extends Number> then why don't the compiler allow me ...
0
votes
0answers
49 views
mod_rewrite solution works as planned, but breaks my wildcard subdomains
I need help rewriting my URL with my .htaccess file
Here's how my URLs look:
www.website.com/?p=admin&i=items&x=375
I'd like them to look like this:
website.com/admin/item/375
The p, i, ...
0
votes
1answer
70 views
Allowing for wildcard at end of url for javascript conditional css style
I have a script working that switches stylesheet depending on the url.
It has to be done this way because the site uses smarty templates and I don't want to alter the core files or the core css.
...
3
votes
1answer
126 views
How to use internal links with wildcard items in Sitecore?
I have a multiple site Sitecore solution. All the sites share a product range which is stored inside a 'Shared data' node that sits at the same level as the root nodes of the sites. The individual ...
0
votes
0answers
83 views
Metrics filter in Graphite - ignore hierarchy (dots)
Is there any way to filter metrics in Graphite while ignoring the hierarchy?
For example:
Say I have the following metrics:
stats_count.A.B.TestMetric
stats_count.A.TestMetric
stats.A.B.TestMetric
...
0
votes
1answer
19 views
Domain redirection [closed]
For example if we use some-ramdom-text.godaddy.com it is pointing to godaddy.com
A few more examples
abc.godaddy.com points to godaddy.com
123.godaddy.com points to godaddy.com
Like wise,How ...




