1
vote
3answers
29 views
Regular Expression for ASP.NET ID Using Javascript
I am trying to extract the word "need" from this string.
ctl00_ctl00_ContentMainContainer_ContentColumn1__needDont_Panel1
I have tried [__]([.]?=Dont)
This is using javascript …
0
votes
2answers
37 views
Need help with RegEx for ranges
I want to be able to use a RegEx to parse out ranges like a Windows Print dialog (such as 1-50,100-110,111,112). The following is my current code and I am not clear on how to parse …
0
votes
4answers
32 views
How to Regular Expression match not having a constant at the end of a string (.net validator)
The item referenced in this question does not seem to work for me.
I'm using the Regular Expression validator in .net
I need to pass validation if the input field does NOT look li …
1
vote
5answers
59 views
How to get fields from such a string?
I'm importing some data from a database. The data has been stored by a CMS written in php where I have no control. Here is the data (a dense report from a paypal response):
a:56:{ …
0
votes
3answers
47 views
Best way to change “bob@???.???” to “bob@something.com” using Ruby ?
What's the best way of doing this:
mail = "bob@something.com"
mail2 = mail.do_magic
# puts mail2 will return "bob@anotherwebsite.com"
I'm thinking regex of course, but is there …
1
vote
2answers
16 views
URL Rewriter not grabbing the exact match
I'm implementing some url rewriting using UrlRewriter.
So going to http://domainname/11
will go to ~/Items/Details.aspx?Itemid=11
<rewriter>
<rewrite url="~/1" to …
1
vote
4answers
66 views
Regex to Split 1st Colon
I have a time in ISO 8601 ( 2009-11-19T19:55:00 ) which is also paired with a name commence. I'm trying to parse this into two. I'm currently up to here:
import re
sColon = re.com …
2
votes
7answers
74 views
How to remove diacritics from text?
I am making a swedish website, and swedish letters are å, ä, and ö.
I need to make a string entered by a user to become url-safe with PHP.
Basically, need to convert all characte …
0
votes
6answers
132 views
Is there any regular expression engine which do Just-In-Time compiling?
My Questions is
Is there any regular expression engine which do Just-In-Time compiling during regex pattern parsing and use when matching/replacing the texts? or where can I learn …
0
votes
1answer
11 views
Filter a string to contain only alnum chars + a hyphen?
Hello,
I would like to filter a string and strip all characters that are not alphanumeric or a hyphen. Is there some tunction in PHP for that?
Not sure how to do it.
90
votes
21answers
75k views
RegEx match open tags except XHTML self-contained tags
I need to match all of these opening tags:
<p>
<a href="foo">
But not these:
<br />
<hr class="foo" />
I came up with this and wanted to make sure I'v …
0
votes
3answers
32 views
Ruby Regexp to extract specific elements in an XML string
I have a simple XML string, that is more or less always the same. I'd rather avoid using an XML parser for such a little piece of code, and I though Regexp would help.
The XML str …
1
vote
2answers
41 views
C# - Removing special character camel style word
I am splitting words from camel style string.Example
string str = "winAgainWinBest";
string r = @"(?=[A-Z])";
var splitted = Regex.Split(str, r);
I get the result
w …
3
votes
2answers
41 views
Get a 2 String array from HTML … using regex?
I'm working on a personal project to auto fill out the USPS Click & Ship form and then output the Ref# and the Delivery Confirmation #
So far I've been able to get the whole p …
0
votes
4answers
97 views
What am I missing here? Perl Regex
This code works - It takes an array of full txt file paths and strips them so that when $exam_nums[$x] is called, it returns the file name
for (0..$#exam_nums)
{
$exam_nums[$_ …
