0
votes
1answer
22 views
Vim script: expand wildcards in a string
There is a vim variable with the string value like this:
foo%:p:r:sbar
%:p:r:s is a vim wildcard.
How can I expand all wildcards in the string variable?
Unfortunately expand(m …
1
vote
2answers
32 views
Get String That Matches Wildcard in PHP
I need a very specific function in PHP. Basically, I have two strings as arguments, one of which is a pattern that contains wildcards of variable length (*), and one of which is a …
2
votes
2answers
72 views
How exactly does zsh expand globs?
I have a C program that displays it's command-line by iterating through the argv variable.
#include <stdio.h>
int main(int argc, char *argv[]){
int i = 0;
printf("- …
2
votes
1answer
79 views
F# String Pattern-Matching with Wildcards
As part of a project I have assigned myself as a way of improving my knowledge of F# and functional programming in general, I am attempting to write a string pattern-matching algor …
0
votes
1answer
85 views
Wildcard characters in queries randomly switching between Access * and Ansi %
BACKGROUND:
I have an Access 2007 application, with a form which builds a Filter string to pass to a Report, which uses a stored query.
In Access Options, I have "SQL Server Co …
2
votes
4answers
67 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?
1
vote
3answers
80 views
generics error: not applicable for the arguments
Can someone explain to me why the following code does not work?
public class Test {
interface Strategy<T> {
void execute(T t);
}
public static class DefaultStrategy& …
-2
votes
0answers
79 views
How do use wildcard in command prompt? [closed]
This link says I can use sth like *.txt to search for a file.
For example in folder Z contains "a.txt", "b.txt", "c.doc".
Now I have cd to Z, what follows next?
It seems that I can …
2
votes
3answers
82 views
Can I use wildcards in “IN” MySQL statement?
I would like to run something like:
select * from table where field in ("%apple%", "%orange%")
Is there a way? Or at least is there a better way than dynamically building query …
0
votes
2answers
84 views
Wildcard search on Appengine in python
Just starting with python on google appengine building a contact database. what is the best way to implement wildcard search?
For example can I do query('name=', %ewman%)
??
0
votes
2answers
91 views
TSQL using a wildcard in a where clause with dynamic sql
It appears that using the LIKE in a condition with wildcards and a variable inside of dynamic sql doesn't work, although it doesn't give an error. Here's an example.
The column c …
0
votes
1answer
54 views
Complex string matching with LINQ to Entity Framework
We are using LINQ to EF to develop a solution.
In my LINQ query I would like
string toMatch = "Matt Cool";
newString = toMatch.Replace(" ", "% ") + "%";
// So here newString …
0
votes
4answers
4k views
How to create a self-signed wildcard SSL certificate for IIS 6?
I'm trying to create a self-signed wildcard SSL certificate for use on a number of development and test servers running IIS 6. Following various guides has led to a couple ways of …
0
votes
4answers
80 views
Pattern Match on a Array Key
Hi. Since I'm finding this site helpful I thought I'd sign up :)
I need to get the stock values out of this array:
Array (
[stock0] => 1
[stockdate0] =>
[stock1] => 3 …
0
votes
3answers
115 views
How do I search for a list of files using wildcard and C#
How do I use wildcards in C# to list down files contained in a selected folder?
