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.

learn more… | top users | synonyms (1)

0
votes
1answer
26 views

array of wildcard collection initialized with array of rawtype

Reasonably enough, compiler would give you Raw type conversion warning for this: //1 List<?> arrList = new ArrayList(); //raw type warning However, compiler is ok (no warning) with this line: ...
0
votes
0answers
7 views

htaccess redirect to www version throwing everything up a directory level

I have been fighting this issue for weeks, and nothing I've tried has resolved it. In the interest of SEO, I am redirecting the non-www version of my site to the www version. I would like the ...
0
votes
1answer
16 views

Symfony 2 optional route url parts (wildcard?)

In Symfony 2.2.1 Is it possible to create route like: /search/category_ids/1,2,3,4/subcategory_ids/32,23,9/language_ids/10,23,5 ... where every url part is optional, for example user could visit ...
0
votes
0answers
19 views

Powershell cmdlet Invoke-WebRequest chokes on wildcard?

Weirdness: I have a Powershell cmdlet here that seems for all the world to be choking on a wildcard character. I didn't know that was possible, to be honest--I mean, this thing says it doesn't ...
1
vote
2answers
26 views

Create files using grep and wildcards with input file

This should be a no-brainer, but apparently I have no brain today. I have 50 20-gig logs that contain entries from multiple apps, one of which addes a transaction ID to its log lines. I have 42 ...
1
vote
1answer
26 views

Using wildcard in WebDriver By.XPATH

Researching on Google I was lead to beleive that you could use * as wildcard in XPATH statements but that seems not to be the case. Therefor could anybody help me find a good XPATH statement for the ...
0
votes
1answer
12 views

How to use column name as part of a LIKE statement in a WHERE clause of a JOIN

LEFT OUTER JOIN [INVENTTRANS] ON #TEMP.VOUCHERPHYSICAL=[INVENTTRANS].VOUCHERPHYSICAL WHERE [INVENTTRANS].ITEMID = #Temp.INVENTDIMID This provides me nearly the result I am looking for. About 1/4th ...
0
votes
2answers
39 views

Why does this wildcarded function tells me it has the wrong number of parameters?

The offending code was: <console>:47: error: wrong number of parameters; expected = 2 terms.foldLeft(r.unitA)(r.add(_, _.eval(x))) I solved my problem by writing: ...
0
votes
1answer
29 views

Wildcard request / location in nginx?

I have a script that increments a global revision number with each deployment of my website. This number is then mapped into the HTML that loads CSS, JavaScript and sprite assets. This is used as a ...
0
votes
1answer
38 views

AWK Script wildcard

I need help with my AWK script ( actually how to add a wild card to perform task described below). I have a file that I back up and submit every night to external party. The format of the file is ...
0
votes
0answers
16 views

wget wildcard and apostrophe

When using wget to recursively grab all directories and files from an FTP server with the following: >wget -r --glob=on --user=*** --password=*** "ftp://111.111.11.11/*" One of the top level ...
17
votes
5answers
368 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 ...
0
votes
0answers
16 views

Htaccess redirect wildcard multiple parameters

I have a blog with URLs like this now: example.com/blog/5001/facebook/blog-title-here example.com/blog/4001/topic/hello-world example.com/blog/5066/twitter/new-post I need to redirect these to ...
0
votes
1answer
35 views

C# ConcurrentDictionary - Best practice and method for wildcard key search

I have a ConcurrentDictionary of string (key) and object (value). I want to have an if statement that returns true if any key in my dictionary contains the sub-string 'xyz'. Better yet, if it begins ...
-1
votes
1answer
23 views

set Java classpath in a cross platform way

After reading this answer Setting multiple jars in java classpath I'm still puzzled. Is there an only way to specify a classpath so it would run in Linux and Windows? For example, I'm running these 2 ...
0
votes
4answers
45 views

Python glob fails?

I want to glob several directories, each containing a file named GDS_XYZ/GDS_XYZ.summary.txt. XYZ changes from folder to folder, so I do glob.glob('GDS_*/GDS*.summary.txt' However, the result is ...
3
votes
2answers
57 views

Appropriate use of Java generics on collection

I've never had the chance to play much with generics before (as in writing classes that are generics), but now the need arises, and I've come across some confusion. There's this interface, that is ...
0
votes
0answers
51 views

Using wildcard bundle IDs and submitting app to app store

I am trying to submit by second app to the Apple app store. I used a wildcard bundle ID (.*) in my provisioning profile, however when I select the wildcard bundle ID for the app in iTunes connect, it ...
0
votes
1answer
41 views

batch wildcards extending extension

So from Why does dir *.txt return *.txtf also? tells me that the reason my del /S moc_*.cxx call is also deleting moc_foo.cxx_parameters If I do not know the length of foo, is there any way in ...
0
votes
1answer
13 views

makefile backreference to matched text

Suppose, I have 2 files, dependent upon each other: ./pictures/1_data.tex | V ./data/1.pl So, 1_data.tex is generated from the Perl file. To do it I have the following ...
1
vote
2answers
44 views

How can i use special charackters like “ * and ? ” in the “ in (…) ” part of a FOR loop

i want to do the following set _1=*.* set _2=*.lng set _3=*.exe ... in a for loop like that: set COUNT=0 for %%f in (*.*, *.lng, *.s, *.exe, *.sfx, *.64.sfx, rar*.lst) do ( set /A COUNT+=1 set ...
2
votes
0answers
24 views

List file range with UNIX wildcards [migrated]

Say for example I have the following files in my working directory: mjk0001.fits, mjk0002.fits, ... numerically increasing all the way to mjk9999.fits. Is there a way to use UNIX wildcards to list or ...
0
votes
2answers
30 views

Using Wild card for removing directory in dos

I am working on a application that needs to remove folders from inside a folder. BUT the Folder name will have the same general name minus the end of it. NA_monthlyGP_20130131, The numbers will ...
0
votes
1answer
80 views

Linux route add with subdomains wildcard -host *.domain.com

if I have a script with the following two commands to modify a route /sbin/route add -host pandora.com -interface ppp0 /sbin/route add -host internal-tuner.pandora.com -interface ppp0 Is there a way ...
3
votes
2answers
63 views

Java Generics for Upper bound & lower bound wild cards

I was reading java generics , I came across an interesting query, I searched on google but couldnt find any proper answer. My question is as follows. For an upper bound wildcard , public static ...
0
votes
2answers
36 views

Implementing a complex method to compare two sets of Strings when groups of one are associated with a third

I have a rather complex method that I need to implement. So please bear with me as I try to describe it in as simple a way as I can. I'm given a set A of Strings that represent filenames - let's say ...
0
votes
1answer
23 views

Matching prefixes for list of words with mysql DB

My goal is to avoid queries that tries to match wildcards because it is X100 times slower than queries that match prefix with a wildcard followed. For a single word it is not a problem, but what if i ...
1
vote
2answers
97 views

How to check in shell script if string variable contains a wildcard?

I'm trying to check if string contains any wildcards. Here is my failing attempt: #!/bin/bash WILDCARDS='* . ? ! ] [' a="foo*bar" for x in $REJECTED_WILDCARDS do if [[ "$a" == *"$x"* ]] ...
2
votes
1answer
39 views

What's the difference between * and ?* in Veracity ignores?

The examples show cache/?*, but I wonder why this strange combination, would the cache/* be enough?
0
votes
0answers
36 views

Is wildcard searching possible with Apache Commons VFS?

I'm just learning Apache Commons VFS. I'd like to search for a file in a certain directory, but I don't know the exact name of the file. I do, however, know a part of the name. To search for a file, ...
-1
votes
0answers
70 views

Regex IsMatch results

my search strings in a dictionary are setup as such, hi \w+ hit hi i am using the \w+ as a wildcard word, in this case if i search "hit" while using LastOrDefault it will find hit, but if i use ...
1
vote
2answers
38 views

Cannot figure out this wildcard subdomain mishap

I've been trying to accomplish this for hours now and for some reason it does not want to work. All I want is username.domain.com to internally go to domain.com/users/username I set-up my dns that ...
0
votes
1answer
44 views

Jquery wildcard selectors for calling plugin?

To keep it brief, I'm trying to select #small-cycle1, #small-cycle2, etc. for the jquery cycle plugin. Using wild cards to select it does not seem to be working, as it writes out the pager nav of ALL ...
0
votes
1answer
45 views

Xpath array for child elements

I have a an xpath code which returns multiple variable child elements i want to be able to read each child element. Is it possible to create an array or is there some other way to pass a wildcard ...
1
vote
3answers
141 views

jQuery: Wildcard class selector in removeClass

This code snippet works to remove an existing class, before adding a new one, when I specify it directly (ie, 'ratingBlock', 'ratingBlock1', 'ratingBlock2', etc.). But when I use a wildcard selector ...
0
votes
0answers
24 views

Using .Net MembershipProvider to Create a User with a Wildcard in Username

We are currently using the .Net 4.5 MembershipProvider to create our application's users. We discovered a little while ago that we had problems with the verification of usernames with underscores in ...
1
vote
2answers
40 views

wildcards in php for email check function

i am currently developing login and register system on my local machine for test purposes and, now, i am in phase of email checking function. as you know, you can use php build in function for that, ...
0
votes
1answer
24 views

Wild card search to CD

I'm trying to search for the first matching directory with a wildcard in a bash shell script, it seems to be working fine on a few systems, and not on others. Is there any way around this to have it ...
0
votes
2answers
97 views

Comparing two tables and finding partial match (SQL / Oracle)

I haven't quite found an answer to this problem, it seems a bit tricky (and yes, I am a beginner). I have two tables; eb_site and eb_register and they both have the column id_glo which connects them. ...
0
votes
0answers
13 views

is it possible to embed links containing wildcards in an svg file?

Is it possible to embed links containing wildcards in an svg file? I have an SVG file I want to use as a template with different linked files. In some of the SVGs I want to use picture1 and others I ...
0
votes
1answer
110 views

Python: match a single word (with spaces)

The problem is that I am trying to match a word (spaces on either side) if it exists. The code I have working (at least mostly) is: import re, os str1 = "the host offered $ rec*ting advice" str1 = ...
-1
votes
1answer
36 views

Replace wildcard string inside double quote

I have this string var newtypegraph=newtypegraph.replace(' "type":"bar3d" ',' "type":"area" '); I want to make bar3d as wildcard.
1
vote
1answer
59 views

Unix filename wildcards in Python?

How do Unix filename wildcards work from Python? A given directory contains only subdirectories, in each of which there is (among others) one file whose name ends with a known string, say _ext. The ...
4
votes
4answers
51 views

bash: for file in if exists?

So, for f in *.c; do echo "That $f is the best C code I have ever seen"; done if there are no c files, will gladly print That *.c is the best C code I have ever seen which is not desirable. Is ...
1
vote
0answers
47 views

Performance effective solution for multiple wildcard mask searches in msbuild?

I'm creating msbuild project, and one of the tasks is to find all files in directories which satisfies any of file masks provided. I realized that even if I create just one-line Item with several ...
0
votes
4answers
37 views

JQuery Wildcard for using atttributes in selectors

I've research this topic extensibly and I'm asking as a last resort before assuming that there is no wildcard for what I want to do. I need to pull up all the text input elements from the document ...
-1
votes
2answers
38 views

Redirect when word is found anywhere in URL [closed]

I need to redirect to /shop when the word "virtuemart" is found ANYWHERE in the URL. Some kind of wildcard rule should do it. I tried RewriteRule (^|/)virtuemart$ /shop [R=302,L] but that did not ...
1
vote
2answers
28 views

Perform a command on multiple files using command line

Say I have the following files: myfile1_1.dat myfile1_2.dat myfile2_1.dat myfile2_2.dat ... and I want to use the same command on each of them (whilst ignoring other files in the directory that do ...
0
votes
1answer
91 views

Find and Replace part of string in on a table column on first occurrence

I need to find and replace all 'x' in my table with ' X ' but only on certain occasions, that is when x is near a [0-9]. This is the code I have so far, but when I execute it it replaces all ...
0
votes
2answers
56 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 2 3 4 5 22