3
votes
6answers
123 views
How to find recursion in your app?
My c# service got an internal .net execution error that points to recursion issue (e.g. stack overflow). The problem is that the service is pretty large, so I am having trouble fi …
0
votes
2answers
37 views
How do I redirect to my same URL without getting a too many redirects error?
I need to redirect users from http://myurl.com/Login.action to http://myurl.com/app/Login.action
I tried this but I get an error saying I get too many redirects.
RedirectMatch ([ …
0
votes
4answers
52 views
Parse HTML Page For Links With Regex Using Perl [closed]
Possible Duplicate:
How can I remove external links from HTML using Perl?
Alright, i'm working on a job for a client right now who just switched up his language choice to …
-1
votes
4answers
97 views
match a word that is not contained in parentheses
hello,
i am trying to split a string by some keywords that aren't contained in parentheses...
so, let's say i have the string "i will meet you where we talked (but not where he sa …
0
votes
2answers
25 views
Using a changing variable in JQuery’s nextAll()
Hi,
With jquery, I'm dynamically adding rows. To do this, I'm copying the first of the table and then with some regex I'm changing the names and sometimes ids from thing like "co …
5
votes
6answers
136 views
Reverse a word in Vim
How can I reverse a word in Vim? Preferably with a regex or normal-mode commands, but other methods are welcome too:
word => drow
Thanks for your help!
PS: I'm in windows XP
…
0
votes
4answers
87 views
I know this regex can be simplified - .NET
Here are my requirements:
1-80 characters
These characters are allowed:
alphanumeric
spaces
_ ( ) [ ] ! # , . & * + : ' / -
The regex I have below works, b …
2
votes
2answers
67 views
Regular expression for filtering MAIL FROM
I need a perl compatible regular expression for filtering my email with smtp-gated. I only want to allow one domain ('mydomain.com') and reject everything else. How do I do this in …
0
votes
3answers
53 views
PHP preg_match problem
Hi guys i'm having a problem, I have the following code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cab …
1
vote
3answers
85 views
Javascript regex
Hi all,
Currently I have a basic regex in javascript for replacing all whitespace in a string with a semi colon. Some of the characters within the string contain quotes. Id …
1
vote
3answers
32 views
preg_replace problem
Hi,
I'd like to match and extract variables from: {{variable:int}}
variable would be anything a-z
: is a separator
int would be an integer 0-9
Curretly i have: preg_replace('! …
-1
votes
1answer
45 views
Regex to replace ampersands, but not when they’re in a URL
So I have this regex:
&(?!#?[xX]?(?:[0-9a-fA-F]+|\w+);)
That matches all &'s in a block of text
However, if I have this string:
& & & & & <a hr …
-2
votes
4answers
74 views
How to match {1,0} with regular expression?
? or `{0,1}`
will match some pattern when necessary,but now I want to do it reversely.
Say,don't match if necessary.
Anyone get what I mean has the solution?
0
votes
1answer
52 views
Regular Expression with quotes in javascript
i like to check this email address with javascript and regex.
Beacuse of quotes and other signs.. there will be syntax error. i checked with firebug.
now, can anyone send me a po …
0
votes
4answers
48 views
Conforming a Regex that matches the following patterns?
I have the following patterns in a URL.
John.Smith
John.Smith.1
John.Al-Smith
John.al-smith.1
John.Smith.Al-Caboon
Where the first (.) is mandatory and with at least one chara …
