Tagged Questions
1
vote
1answer
60 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 ...
1
vote
1answer
69 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
...
0
votes
3answers
107 views
Pattern matching with multiple nonspace characters
I have the following string data:
data = "*****''[[dogs and cats]]''/n"
I would like to use regular expressions in python to extract the string. All the data is encapsuled in the double quotes " ". ...
0
votes
1answer
152 views
getting a pattern using like,wildcards in sql
I have two columns visit and visit_sequence,
Example table
Visit Visit_sequence
1 43:65:34:21:343
2 22:78:113:37
3 43:465:72:21:1187:542
The semi colon ...
0
votes
2answers
186 views
php wildcard search for mixed string with a file path and details
In my php program i need to search a mixed string having a file path and some details about it with a pattern with or without wildcards, if this pattern matches with the string then it should return ...
1
vote
1answer
274 views
BASH in Android > using wildcards doesn't work
I'm attempting to track the deactivation of notifications within android.
This I planned on doing by polling the notification dumpsys every x seconds.
There for I've put the notification into a ...
1
vote
2answers
474 views
Prevent Directory.GetFiles() from searching short file names
Let's say I have a directory 'C:\Test' with three files in it:
A23456789.txt
A1.txt
G 5.txt
And I run this command:
Dim FileArr = Directory.GetFiles("C:\Test", "*1.txt", ...
0
votes
2answers
210 views
wildcard dot-star to ignore delimeter
I am trying to write a splunk query that basically extracts fields between delimiter "," and puts the value in a variable.
I want to extract everything between 2 commas.
,extract this@#$,
,extract ...
1
vote
2answers
690 views
SQL pattern that matches all strings consisting of two words separated by one space character
What do I write in my LIKE statement so that it matches all strings consisting of two words separated by one space?
3
votes
5answers
2k views
Wildcards in Python?
Over the years I have noticed the 'wildcard' variable in various bits and pieces of Python I've come across. I assumed it worked like Haskell: allowing you to put a variable where one was required in ...
0
votes
2answers
1k views
Using vb.net and RegEx to find string inside nested string
Using VB.NET, Is there a way to do this RegEx call in 1 step... instead of 2-3?
I'm trying to find the word "bingo", or whatever is between the START and END words, but
then also inside the inner ...
6
votes
3answers
5k views
Pattern matching using a wildcard
How do I identify a string using a wildcard?
I've found glob2rx, but I don't quite understand how to use it. I tried using the following code to pick the rows of the data frame that begin with the ...
5
votes
1answer
768 views
'Multiple declarations of' error when pattern matching with wildcard
For learning purposes I am trying to write my own implementation of the zipWith function. However, I am hitting an issue with pattern matching on edge cases with _. First I will describe the good ...
0
votes
2answers
147 views
How to verify if file is according to mask in PHP without reading filename from disk
I have a list of file names(I already have the filelist let's say in a text file). I want to process this list in the following way:
filenames of type /dirX/subdirX//.ext will be written in a new ...
1
vote
2answers
914 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 string that matches ...
4
votes
1answer
1k 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 algorithm from scratch ...
2
votes
5answers
4k views
Pattern Match on a Array Key
I need to get the stock values out of this array:
Array (
[stock0] => 1
[stockdate0] =>
[stock1] => 3
[stockdate1] => apple
[stock2] => 2 [
stockdate2] =>
)
I need to ...
1
vote
2answers
2k views
Fast string matching algorithm with simple wildcards support
I need to match input strings (URLs) against a large set (anywhere from 1k-250k) of string rules with simple wildcard support.
Requirements for wildcard support are as follows:
Wildcard (*) can only ...
