-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 ...
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 = ...
0
votes
1answer
73 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
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
4answers
351 views

Regular expression wildcard

I've just started using Regular Expressions and this is so overwhelming that even after reading documentation I can't seem to find where to start to help with my problem. I have to a bunch of ...
0
votes
2answers
176 views

python glob for “excluding pattern”

Basically I want to screen for the following files in python using glob.glob module: log_fasdsaf log_bifsd72q log_asfd8 ... but excluding: log_fdsaf_7832 log_fsafn_fsda log_dsaf8_8d ... Naively ...
0
votes
3answers
41 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
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
1answer
100 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: ...
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 ...
5
votes
3answers
156 views

From wildcards to regular expressions

I want to allow the two main wildcards ? and * to filter my data. Here is how I'm doing now (as I saw on many websites): public boolean contains(String data, String filter) { if(data == null ...
2
votes
3answers
119 views

Converting shell wildcards to regex

I want to search for titles using shell wildcards like *.js, *.*.* etc. in js. The thing is I loop through a list of titles and I need to filter the files using a js regex test. How do I convert shell ...
0
votes
3answers
115 views

Javascript: Saving a path with a wildcard into a variable

I would like to save a path with a wildcard into a variable with JS. The path looks something like this: 09328402984923kjh234243/2/somename.xml The first and the second part of the path can change, ...
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
140 views

Is GNU make wildcard able to match more complex patterns, like a regexp for example?

Let's say I have the following wildcard matches in a makefile: data-files = $(wildcard $(ptdf)/*.png) \ $(wildcard $(ptdf)/*.gif) \ $(wildcard $(ptdf)/*.bmp) \ $(wildcard $(ptdf)/*.jpg) \ ...
0
votes
1answer
196 views

Java Simple Wildcard Match

I am making a java IRC lib and I need a method to see if a certain user matches a hostmask which can contain a wildcard * character. What is the simplest way to do this without using regex? Some ...
3
votes
1answer
414 views

eclipse search and replace with wildcard

I am trying to remove all occurances of id="someId" where someId is different in every case. I have tried to use this syntax: (id="\w+\"\(\)) because it's used in similar situations by other posters. ...
2
votes
3answers
323 views

JavaScript .search() for a URL with wildcard using RegEx

I'm building a site that is a portfolio of projects. I have some pagination that allows you to go next/previous project. I want to run some animations when coming to a project, but not when browsing ...
1
vote
1answer
86 views

regex using OR in statement

I am using Ant and I want to match strings that look like import package.R; and import package.R.*; but not import package.Rxxx; so it is very specific that I only want to some kind of wild card for ...
1
vote
2answers
153 views

Wild card in REGEXP?

I have data like this in a longtext column: Name: Adam Smith Name: Bob Johnson Name: John Hansen Is it possible to use a wildcard, within regexp? Say a user searches Smith, in pseudo-code: SELECT ...
2
votes
1answer
314 views

Converting wildcard pattern to regular expression

I am new to regular expressions. Recently I was presented with a task to convert a wildcard pattern to regular expression. This will be used to check if a file path matches the regex. For example if ...
1
vote
2answers
107 views

bash string replacement in a file

I am trying to replace some text in a file replacetest.xml here is the part of the file I want to modify. <class name="replace_after_this_string">randomtext</class> I want to change the ...
0
votes
1answer
2k views

regex wildcard find and replace notepad++

Hi I am trying to do a simple regex that is annoying me because it should be easy - I am using notepad++ and that might be filtering "differently" here is what I have I want to find inside the ...
1
vote
1answer
793 views

Morphia mongoDB wildcard query

Straight forward question, does anybody know how to make a wildcard query using morphia linked to a mongoDB database? This is what the mongo statement would look like: Mongo: ...
0
votes
1answer
131 views

PHP: Regex for Matching URLs with a Certain Pattern and One Optional Wildcard

maybe this question has already been answered somewhere on this site, but I'm not sure, because I'm very bad at regex. In fact, my question is very very basic, I guess. I need to check if an URL ...
-2
votes
2answers
88 views

Java and Eclipse — Replace `extends` and `super` with `returns` and `accepts`

Correct me if I'm wrong, but I noticed recently with wildcards in Java, that... ? super T pretty much means ? accepts T and... ? extends T generally means ? returns T. Suppose I have a List<? ...
0
votes
2answers
323 views

How to get data from string using Javascript Regex

I can't post the exact data i'm trying to extract but here's a basic scenario with the same outcome. I'm grabbing the body of a page and trying to extract a bit.ly link from it. So let's say for ...
0
votes
1answer
107 views

How to find texts and replace them using RegEx

Below is an extract from my long text: As a young researcher, he is required: \n ÷ to read at least three theses\n ÷ to meet his tutor or supervisor once a week\n ÷ to join seminars\n Now I would ...
0
votes
1answer
72 views

Using two asteriks to add a file in git

I want to add a file which has a unique file name but a long preceding path (e.g. a/b/c/d/filename.java). Normally I would add this to my repository by doing git add *filename.java. However I have ...
1
vote
3answers
65 views

textpipe / other replace regex method [closed]

I would like these lines of text: [URL=http://something.com/attachment/ap0djrk27dja]flower.mpg - 129.7 MB[/URL] [URL=http://something.com/attachment/XjotHS4jrgod]book.mpg - 200.3 MB[/URL] ...
0
votes
1answer
52 views

How to do this string replacement in PHP

I have a string and within that string are some links of the format <a href="...some url...">Text</a> I want to replace that entire section with a different piece of markup The problem ...
0
votes
0answers
214 views

SQL SERVER 2008:Find all objects in stored procedure not having (NOLOCK) statement

I have an SQLSERVER 2008 SP having more than 3000 lines of code. I have to find out all the objects (Tables/Views) in the SP which does not have WITH (NOLOCK) statement in it. Is there an easier way ...
0
votes
1answer
119 views

Javascript / Jquery. Substitute plain text with html using regular expression with wildcard

I want to replace the plain text (for example) [next 1272] with <a href='page.asp?id=1272'> <img src='next.png' alt='Next Page' title='Next Page' /> </a> The text could appear ...
0
votes
4answers
96 views

How can I write a regex that will match any string?

Yes, I know this sounds counter-intuitive. But I need it for a JavaScript mashup written by someone else. There is a regex value used to select project names to which the mashup will apply. I want ...
1
vote
2answers
181 views

MySQL Search w/ Ordered Wildcards, and Extracting Their Values

Is it possible to do a wildcard search, and extract the values of the wildcards and put them into a MySQL result? Preferably, I'd also like to label the wildcards. Continue reading to see what I mean. ...
3
votes
2answers
802 views

representing wildcards on c#

I'm trying to implement the two oracle wildcards "%" and "_ " on my c# program using the Regex class. The problem is when I have the wildcard "_" because I need to accept ONLY ONE character but it ...
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 ...
0
votes
5answers
638 views

How to find all file names in a directory using windows wildcards

i have two files: asdf.txt.txt asdf.txt Is it possible to use cmd to find only the file ending .txt and not the file above it: .txt.txt? I have : dir *.txt but it still yields both files is ...
1
vote
3answers
117 views

Regex findall on a function definition. Want to match args but not function

I have a list of strings that look like "funcname(arg, another_arg)*20 + second_func(arg1, arg2)" and I want to pull out just the args. I've tried the following: re.findall(r'\w[\w\d_]+(?!\()', ...
2
votes
3answers
259 views

Using question mark in CodeIgniter routing

I need to change http://mysite.com/profile?username=nick to http://mysite.com/user/nick with CodeIgniter routing. I add the following line to routes.php but it doesn't work: ...
0
votes
1answer
34 views

getting sessions via prefix/wildcards

I have a tricky question. lets say if we start naming session as : $_SESSION['user-msg'], $_SESSION['user-err'], $_SESSION['user-name'], $_SESSION['admin-msg'], $_SESSION['admin-err'], ...
1
vote
2answers
601 views

Tuckey URL Rewrite - Remove .html Extensions

I have look all over the web and can't seem to figure this one out. I am using the Tuckey rewrite engine. I have read the manual and reviewed the examples without help. I want to remove ".html" ...
3
votes
4answers
309 views

Looking for simple yet powerful windows wildcards (`*, ?`) matching implementation

I'm looking for simple and powerful way to implement Windows flavoured * and ? wildcards matching in strings. BeginsWith(), EndsWith() too simple to cover all cases, while translating wildcards ...
10
votes
3answers
79 views

Can a regular expression be tested to see if it reduces to .*

I'm developing an application where users enter a regular expression as a filter criterion, however I do not want people to be (easily) able to enter .* (i.e. match anything). The problem is, if I ...
1
vote
3answers
1k views

How to efficiently test if files with a matching filename (regex or wildcard) exists in a directory?

I am searching for an efficient way to test if files exists which have a file-name of a certain pattern. Examples using wildcards: ????.* ???????.* *.png *.jpg Examples using regular ...
0
votes
1answer
119 views

RegExp wildcard shouldn't overwrite

I've found an useful post here on StackOverflow, I use to hightlight specific text on a website: Link to Answer I'll post it again (modified): function hiliter(word) { var rgxp = new ...
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 ...
0
votes
3answers
264 views

Regex Wild Card question

Code: strx = "exam/unwanted_tex/ple"; strx = strx.replace(/\/.+\//, ''); alert(strx); // Alerts "example" 2 quick questions: This code replaces everything within "/" and "/"? What difference is ...
5
votes
7answers
15k views

Need to perform Wildcard (*,?, etc) search on a string using Regex

I need to perform Wildcard (*,?, etc) search on a string. This is what I have done. string input = "Message"; string pattern = "d*"; Regex regex = new Regex(pattern, ...
0
votes
2answers
2k views

VB.Net Regular Expressions - Extracting Wildcard Value

I need help extracting the value of a wildcard from a Regular Expressions match. For example: Regex: "I like *" Input: "I like chocolate" I would like to be able to extract the string "chocolate" ...

1 2