Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
134 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 ...
3
votes
6answers
5k 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 ...
2
votes
2answers
27 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 ...
2
votes
3answers
76 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
2answers
118 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 ...
1
vote
4answers
330 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 ...
0
votes
2answers
37 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 ...
0
votes
1answer
157 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 ...
0
votes
0answers
232 views

RewriteCond %{REQUEST_URI} Regexp - Want to match anything but substring

I'm trying to get a rewrite condition working in my .htaccess file: RewriteCond %{REQUEST_URI} gift-cards Works totally fine in matching when the url has gift-cards in it. I want to do the opposite ...
0
votes
1answer
49 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
170 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 ...
0
votes
2answers
73 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 ...
0
votes
1answer
89 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
2answers
86 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
105 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. ...