The apache-regexp tag has no wiki summary.
0
votes
1answer
42 views
Flex Regular expression help needed
I have created the regexp which allows me to enter == > (digit(0-9)).(digit(0-9) - for 2 decimal)
I am not sure how do I stop, to allow entering "0" more than once.
This is what i have tried:
...
0
votes
1answer
281 views
.htaccess regular expression in Yii when having path url format
I am trying to set the regular expressions to get some parameters from the url. here is one url example:
mydomain.com/files/images/versions/large/uploadedGal/1-36.png
and I need to get two ...
0
votes
0answers
70 views
How do I read a file with regexp and write the value in another file?
I just started learning ANT and I would like to read a kind of properties file with regexp.
My file is a kind of:
filename\!sometihng=yyy
filename\!script=name-1-name-2
filename\!sometihng=xxx
I ...
0
votes
1answer
321 views
RedirectMatch 403 — Need to have an exception for 1 URL in .htaccess
How do I allow "rpc.php" to get not redirected by this line in apache .htaccess
RedirectMatch 403 /+(soap|cache|xtemplate|data|examples|include|log4php|metadata|modules)/+.*\.(php|tpl)
I got a ...
0
votes
1answer
125 views
Apache Rewrite Rule that Only redirects traffic on even timestamps
I am trying to create an apache redirect rule that will redirect half of my traffic to one location.
The way I want to do this is by only redirecting traffic that arrives with an even timestamp. ...
2
votes
2answers
72 views
URL rewriting apache2
How would I be able to rewrite
anyhost.com/argument1/parameter2/some-text/
as
anyhost.com/index.php?path=argument1/parameter2/some-text/
or
...
0
votes
2answers
66 views
Escaping mod_rewrite keywords
I am currently using the following rule in mod_rewrite:
RewriteRule /request/([0-9]+)$ /request.php?id=$1
That rule does not work, while "requests" instead of "request" in the regexp works.
My ...
4
votes
2answers
481 views
Differences between Jakarta Regexp and Java 6 java.util.regex
I am in the process of migrating from Jakarta Regexp to the standard Java 6 regular expressions package java.util.regex. I noticed the following difference when not specifying the beginning ^ and end ...
0
votes
1answer
427 views
Apache FilesMatch : How to only match assets with a timestamp appended
I just wrote and answered a question regarding what apache FilesMatch recognizes as the filename; see Here for more on that, but the skinny is that apache does not recognize anything after the file ...
1
vote
1answer
209 views
Regexp - How to find text parts surrounded by two specific characters?
I'm trying to figure out a regexp that replaces text parts that are surrounded by a specific character... take a look at this example:
\|(.+)\|
it finds any text that is placed between two vertical ...
0
votes
3answers
356 views
htaccess redirect referrer - but stop redirecting on new page
We have a problem with someone poaching the extensive ukulele song list at http://scorpex.net/Uke for a paid app.
Negotiations have broken down so any requests from the app are going to be redirected ...
2
votes
3answers
134 views
javascript regexp help passing in a var to be included as part of the match
Need some help from you javascript regexp pro's
I have a function that I want to pass in some a "value" and a list of accepted characters. This function works in php, but the javascript variables ...
2
votes
3answers
240 views
math with regexp in mod_rewrite
I'm trying to do the following:
I have the url:
http://www.example.com/9999
and I want it to subtract 5000 from that number, and seamlessly redirect to:
http://www.example.com/page.php?id=4999
Can ...
0
votes
2answers
126 views
Why wont this simple Jakarta Regexp class run?
I am working on a project that requires me to understand the basics of the Apache Jakarta Regexp package for Java. I am somewhat unfamiliar with how to inlcude libraries in a java class. This is what ...
11
votes
1answer
295 views
How does JDK 6 regexp compare with org.apache.regexp?
I'm interested in benchmarks and functionality? Is there are any reason to use Jakarta regexp?
0
votes
1answer
132 views
Catching url in htaccess rewrite condition
I got this url
/search/renttype-all.place-all.type-all.bedrooms-all.0.0/
I want to get the text after the second "/" and the third "/". The URL can end at the third "/" or go on with more text and ...
0
votes
1answer
130 views
Jakarta Regexp 1.5 Backreferences?
Why does this match:
String str = "099.9 102.2" + (char) 0x0D;
RE re = new RE("^([0-9]{3}.[0-9]) ([0-9]{3}.[0-9])\r$");
System.out.println(re.match(str));
But this does not:
String str = ...
0
votes
2answers
126 views
Find a sequence with regular expression then find a second one next or few line to it
I will better explain my situation with an example.
Considering a httpd.conf file in which I need to change the document root. So first I need to find the ServerName then change the document root, so ...
0
votes
3answers
112 views
Using regular expressions to change HTML
How would I go about taking input html and changing any src or href links that go to a local adress (e.g. href="index.html" to their full location (specified) e.g. ...
1
vote
4answers
367 views
Regex gives error
Continuing with the post at
http://stackoverflow.com/questions/705672/regular-expression-to-allow-a-set-of-characters-and-disallow-others/705990#705990
Does anybody know why the below would occur?
I ...
3
votes
6answers
7k views
Regular expression to allow a set of characters and disallow others
I want to restrict the users from entering the below special characters in a field:
œçşÇŞ
ğĞščřŠŘŇĚŽĎŤČňěž
ůŮ
İťı
—¿„”*@
Newline
Carriage return
A few more will be added to this list but I will ...