Regular expressions (often shortened to "regex") are a declarative language used for pattern matching within strings. Please also include a tag specifying the programming language or tool you are using.
0
votes
2answers
15 views
javascript Regex to check if input matches a landline area code
In Australia we have area codes 02,03,07,08 however when i try to put 04 into the field it allows the form to be submitted when it should not allow it.
I am wondering if anyone knows how to fix this ...
-2
votes
0answers
13 views
Please propvide a regular Expresion to split a string shown below?
I have a string
"XX NAME="United States" MA="Track1" AREA="0.3"/>"
Please provide a regular expression(regex) to split the string and to get
Value XX
Value of "NAME=", "MA=", "AREA=" as ...
1
vote
4answers
29 views
regular expression for 2 string arguments having numeric values with range constraint
I need to validate console input arguments. User can pass only 2 arguments separated by Space.
First argument should be between 1 to 100
Second argument should be between 1 to 750.
I need a ...
0
votes
2answers
27 views
Extracting image link through regex in C#
I have a bunch of links in this format
http://imgur.com/a/bwBpM
http://imgur.com/a/bwBpM[/IMG]
[IMG]http://imgur.com/a/bwBpM
[IMG]http://imgur.com/a/bwBpM[/IMG]
The IMG tags are only supplied in ...
0
votes
1answer
23 views
Python: Convert tuples from re.findall into string?
I am new to Python. I wish to read in a text, use regex to find all instances of a pattern, then print the matching strings. If I use the re.search() method, I can successfully grab and print the ...
0
votes
1answer
25 views
Mod Rewrite to a non existend direcotry
my problem is, that if I rewrite my URL with following rule
RewriteCond %{QUERY_STRING} ^site=meine-bar&filter=([a-zA-Z]+)$
RewriteRule ^meine-bar/([a-zA-Z]+)$ ...
0
votes
2answers
42 views
Find abbreviations but not partially-capitalised words
How to find all possible abbreviated words like CPR and S.O.S. Regex pattern = [A-Z][A-Z]+ can find all words with caps but I want to exclude words like REgex.
line2 = "What does CPR and S.O.S means ...
3
votes
1answer
44 views
Regex: plus sign not doing what I expect
I have a file with many lines including a string like this: blah blah num=12345; blah blah
I would like to find lines where the number after the equals sign is greater than 1, with no upper limit. (I ...
0
votes
0answers
36 views
Adding a > to markup using regex
really easy question
$config['markup'][] = array("/\[gt\](.+?)\[\/gt\]/s", "<span class=\"quote\">\$1</span>");
With that current code, [gt]foobar[/gt] will output foobar and apply the ...
0
votes
1answer
16 views
Using reg.exp for detecting URL
I am currently trying to build a router in a framework i'm doing.
Therefore I need to match the URL - e.g. "/blog/2006/21" with e.g. "/blog/:year/:is"
My problem is, that my reg.exp, that I am ...
1
vote
1answer
29 views
Splitting a string without removing delimiters, but suppressing empty capture groups
I am splitting a string without removing delimiters, by putting the entire capture regex in parentheses. The intent is to match sentences ending in one or more '[!?]' characters.
All is great except ...
1
vote
2answers
40 views
Regex get song h:m:s when h and m is optional
Pattern:
(.*?) (?:(\d+)\:)??(?:(\d+)\:)??(\d+)
Input
song1.mp3 2:35
song2.mp3 1:2:45
song3.mp3 45
Replace:
the song "$1" is $3min and $4sec
Result I want
the song "song1.mp3" is 2min and ...
1
vote
1answer
26 views
Improving speed of regex and using preg_replace for slugs
Previously I have been echoing $obj->html but a current project requires that the HTML be examined for slugs like {whatever} and replacing these with other content.
I have two problems. The first is ...
0
votes
1answer
15 views
REGEXP BINARY sql syntacs issue
I have this $value= 24153;
i have a field the can hold one or more values like this {"id":"2","value":["3"]} or like this {"id":"2","value":["3","4"]} or {"id":"2","value":["3","4","2"]}
i have this ...
0
votes
1answer
15 views
Setting up a CoreData regular expression predicate for a comma-separated list
I'm beating my head against a wall trying to get a regular expression function to work with a CoreData fetch. I have an attribute named maps on an NSManagedObject subclass that I'm trying to filter ...
1
vote
1answer
29 views
JavaScript all links on a page with regex
I'm trying to extract all links on a web page that has the following markup:
<a href="/item/0/100">0</a>
<a href="/item/1/100">2</a>
<a href="/item/2/100">3</a>
...
1
vote
1answer
27 views
How do I regex for multiple items within a single string with c#?
My string is the following format:
"[Item1],[Item2],[Item3],..."
I want to be able to get item1, item2, item3, etc.
I am trying the following grep expression:
MatchCollection matches = ...
0
votes
1answer
14 views
Need help writing a regex string to remove string with variable number
Ok I want to remove all text that is a variable length number between 2 fixed strings. so for example: lets say I needed to remove the following paterns:
::tt::23559::/tt::
or
::tt::123::/tt::
...
0
votes
1answer
30 views
regex search is not catching what it should
So I have to get part of a known string string. I use re.search for this. But in this specific circumstance, it is not catching what it should:
>>> a = 'c$}ononetentonemotw{$ore'
...
0
votes
2answers
26 views
how to ignore a character in the regular expression
I do not know how to ignore an item from the ER.
just need to get P1, but this returns /P1.
is possible to just ignore the bar?
$pattern = "#(/P[0-9])?#";
1
vote
1answer
25 views
Regex in sed to remove hyperlink and keep link text
In a mysql dump I want to remove all link tags that contain a certain class and leave the (always just) one word that was enclosed in the tags.
tag structure:
<a ..potential-other-stuff.. ...
3
votes
4answers
72 views
Javascript Regex to urlify text
In string containing a lot of following url token -
[http://www.someurl.com/path/to/resource/?some=params&crazy_chars=true_0_1_0_1]
Which I want to capture and convert to
<a ...
0
votes
2answers
20 views
XML REGEX to find characters 40 to X
I have the string
TEXAS RANGERS ASSOCIATION PARKING ATTENDANT
I need to get the characters from position 40 to the end of the line. It has to be XML compatible due to limitations ...
5
votes
5answers
56 views
RegEx lookahead on .*
I have a pattern that needs to find the last occurrence of string1 unless string2 is found anywhere in the subject, then it needs the first occurrence of string1. In order to solve this I wrote this ...
2
votes
2answers
45 views
Change paths from slash to backslash in a file with powershell
I have a config file originating from a unix environment, where the basepath is replaced with the basepath in windows:
inputdir = D:\etl-i_win_4/input/000/
inputdir = D:\etl-i_win_4/input/001/
...
-1
votes
1answer
20 views
Maven packagingExcludes jars regex
I have some skinny WARs in EAR. I need to exclude all the war libs except richafeces jars.
I tried this in packagingExcludes ...
0
votes
1answer
75 views
Regular expression to get first HTML line
I'm using C# and .NET 4.5.
I have HTML files that I have loaded into memory from a database connection. I would like to extract the first line from them. I think that it should be suitable to do this ...
0
votes
1answer
24 views
htaccess settings for allowing image uploads
ForceType application/octet-stream
< FilesMatch "(?i)\.(gif|jpe?g|png)$">
ForceType none
< /FilesMatch>
AuthName "Authorization required"
AuthType Basic
require valid-user
The above ...
0
votes
2answers
27 views
Oracle sql update using regexp_replace
I have almost 2000 rows in a table ("Sensor", which has many more than 2000 rows) in which I need to update one column, the sensorname.
Part of the replacement within the update is based on the ...
1
vote
2answers
65 views
Alter string using regex in Java
I have a XML file loaded into a String like this
<children name="{content.type}">
<values>{video}</values>
</children>
<children name="{content.size}">
...
0
votes
3answers
34 views
String matching in emacs lisp matching arbitary string
In emacs lisp I only know the functions string-match[-p], but I know no method for matching a literal string to a string.
E.g. assume that I have a string generated by some function and want to know ...
1
vote
2answers
23 views
replace href and url by the <c:url /> tag
I'm working on a web application using JSP and JSTL in presentation layer.
When I get html from designer, my jsp file is updated as below:
...
<link rel="stylesheet" type="text/css" ...
0
votes
0answers
22 views
propertyregex not able to capture numbers
<propertyregex property="number"
input="dev01"
regexp="([^a-z])"
select="\0"
/>
<echo message="number is : ...
0
votes
2answers
36 views
I want to be able to isolate a non-specific string from a list using python
I have this string:
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
I want to be able to remove the 'eth0' part from this string, but it may not always be ...
0
votes
1answer
34 views
How can you get the actual value of the string a Javascript regex matches?
I am trying to write a Javascript function that will take a string with <0> (where 0 can really be any number) in it and remove it and get the actual value of the number in it. For example, if ...
0
votes
1answer
18 views
Regexp, can't match many elements contained in an array (json)
I have trouble doing a regexp, and I don't know how to formulate the questions, so better than words, here is an example
String
"medias": [
{
"height": 800,
"id": "",
"origin": ...
0
votes
3answers
40 views
Java regex split double from string
I am having a problem splitting something like the following string:
43.80USD
What I want is to be able to split the expression into an array that has "43.80" as the first element and "USD" as the ...
3
votes
5answers
31 views
How to match any thing dosen't contain a specific word using RegExp
How to match any thing dosen't contain a specific word using RegExp
Ex:
Match any string doesn't contain 'aabbcc'
bbbaaaassdd // Match this
aabbaabbccaass // Reject this
0
votes
2answers
18 views
Regex for Google analytics
I am trying to match a set of data but not if it contains certain strings in the query:
The strings that I do not want to allow are
/hd/805
/hd/864
/hd/999
/hd/???????debugUser??????
...
0
votes
2answers
40 views
Regex pattern query to match text within string
I have a large xml file with rows of :
<level id="100" name="blaha blah blah" currency="USD" abbr="blh">
I need regex to find "blaha blah blah"
Any ideas?
0
votes
2answers
20 views
replace & © and another ISO-8859-1 by regex in php
i need replace & © and another &******; and replace it to ""
preg_replace or ereg_replace, i need some code
tried
$string = ...
1
vote
2answers
26 views
Regular expression which matches at least two words from a list
I have a list of words - "foo", "bar", "baz" - and I want to write a regexp which would match strings which contain at least 2 of them. E.g., "foo baz" should match while "ba foo z" should not.
The ...
0
votes
5answers
35 views
Regex extract string without last char parameter
Does anyone know what the regex to get the following result:
Hello world, Another day to die. => Hello world
I'm trying the following expression:
/^.*,/
But the result is 'Hello world!'
I ...
2
votes
2answers
45 views
Match pattern in regex expression
I'm developing a generic application and I need to match a pattern that I can't solve.
The input string could be:
12_B 99-23_9_23
As you can see in the example, my problem is when I want to match ...
-1
votes
1answer
16 views
redirect single folder to get variable [closed]
I have a website which I want to make bilingual.
for this I'd like to redirect based on a folder so e.g.: http://www.example.com/de/aboutUs.php should link to ...
1
vote
3answers
48 views
Extract Date and Time from string with jQuery
I have a string like asdasd 18.06.2013 07:57
the following code return the date and time (18.06.2013 07:57) well, but i hope there is more clean solution to do this
report_t=$('#reportResult ...
1
vote
3answers
56 views
What does regex [*\f]+ mean?
In the org-mode the outline-regexp variable is set to "[*\f]+".
I am not able to figure out what it stands for, referred this without success.
Edit:- [*\f]+ changed to "[*\f]+"
1
vote
3answers
42 views
Regular Expression PHP finding the number after a certain number of # characters
Suppose I have the following line:
09:00 23/02/2012#3.5#2.2#91#3.7#7.4#170#S#1033.1#(+1 Hpa / 3H).#0#3H##4.5#Plus de 2500m #6####00#### Brume.#
I want to find the first number or character after ...
1
vote
4answers
56 views
Extract Text from within tags using RegExp PHP
I am trying to extract some strings from the source code of a web page which looks like this :
<p class="someclass">
String1<br />
String2<br />
String3<br />
</p>
I'm ...
0
votes
1answer
55 views
Need help modifying a regex that once worked
I am trying to parse a string and build a dictionary that will contain the name of the field and its value as key / value.
Here's the code:
var dictPriceList = Regex.Matches(priceListToParse, ...




