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.

learn more… | top users | synonyms (6)

0
votes
1answer
25 views

Surround array on paste Sublime

I would like to set my sublime up to enter a mode where when I paste a set of data looking like this: 1234567 This is code 1 2345678 This is code 2 3456789 This is code 3 It will end up like this: ...
0
votes
1answer
16 views

Efficient way in using lookarounds for regex split

In C#, i am trying to split the following string (hello)(world)(hello)(world) into an array of the following format arr[0] = ( arr[1] = hello arr[2] = ) arr[3] = ( arr[4] = world arr[5] = ) arr[6] ...
1
vote
0answers
44 views

Good Design For Regex, Capture Groups And Unit Testing

In a project I'm experimenting with using regular expressions to distinguish between various types of sentences and map them to functions to handle these sentences. Most of these sentence handling ...
2
votes
1answer
41 views

Parsing user time input in Java/GWT

What is the best way to parse time that a user typed in a text field in GWT? Default time formats require users to enter time exactly as the time format for locale specifies it. I want to be more ...
0
votes
3answers
52 views

parsing string in bash

I have a bunch of C++ files in a directory called src. I needed to find all the files that have *Test.cc, but without the .cc file type, so it would just be [filename]Test. I currently have: 1 ...
2
votes
1answer
51 views

JQuery * (all elements) selector excluding span tags that have some class. How could I make this work?

This is the first code var operations = 0; $('body').bind('DOMCharacterDataModified, DOMNodeInserted, DOMSubtreeModified', 'test', function() { if (operations < 1) { ...
3
votes
2answers
27 views

Apache mod rewrite for dynamic pages

I'm having a problem with my mod rewrite rule that I wrote for my website, nothing seems to change as my pages URL are loading the same as before, if anyone could have a look at it and let me know if ...
0
votes
1answer
37 views

How Regex engine parse anchors

Can some explain how Regex engine works when it tries match ^4$ to 749\n486\n4 I am mean how Regex engine parse string While performing match
0
votes
1answer
32 views

Match string and put all results in a list in Python

I am going to match something from a string, and I want to put all the matched strings into a list; how would I do that? Right now I am using this myStr = 'one two one three' match = ...
0
votes
1answer
23 views

VBS Compare strings using wildcard

I have a vbscript function that requires a string comparison where one/both strings may include a wildcard. Unfortunately, strcomp("string1","string.*")=0 does not work for me as it is doing a ...
1
vote
5answers
39 views

regex how to extract strings between delimiters and not double delimiters

I'm sure this is a duplicate but cannot find the right search criteria. Basically I have a user supplied string with keywords enclosed in braces, I want a regex that will find the keywords but will ...
1
vote
4answers
82 views

please explain this regular expression

^[[:space:]]*@ I can't figure out what the [[:space:]]* means in the above regular expression. Please help, thanks!
4
votes
1answer
74 views

replace all line breaks not precede by a period with a regular expression?

Is is possible to select only line breaks that are not preceded by a period using regular expressions ? I am editing subtitles files for students. To make the printed version dead tree friendly I am ...
0
votes
1answer
20 views

Can't get the RegEx right

The function checks out and everything works, I'm really just having trouble getting a pattern search that fits what I want. I'm trying to get a handle on RegEx's but they're a bit confusing to be ...
1
vote
1answer
25 views

How to do diacritic insensitive matching with NSRegularExpression?

Is it possible to perform diacritic insensitive matching using NSRegularExpression? The options for regularExpressionWithPattern doesn't seem to provide this.
-1
votes
2answers
40 views

Regex to choose one random occurence of a keyword between a { and } sign [closed]

My text example: {this is a text example and this is my KEYWORD, but my KEYWORD is in this text multiple times and I only want one of my KEYWORD replaced, but it should be chosen randomly every ...
2
votes
1answer
38 views

URL Rewrite Regular Expression to suit all

Brief Explanation I am trying to come up with a smart way of controlling my web page rewrites with as few rewrites as possible. So, for example, if you have the following page translations: ...
1
vote
3answers
63 views

How to replace > 1 tokens on a string?

I have a list of tokens [@date] [@time] [@fileName] ... etc That are dispersed all over a large file. I can parse the file and replace them with Regex.Replace easily when there's only one token ...
0
votes
2answers
29 views

Use PHP to extract specific string data

The iframe is assigned to a variable $string. I want extract the texts between embed/ and ?rel in the iframes src. So i would be looking for this code sL-2oYAI35o <iframe width="420" height="315" ...
0
votes
1answer
28 views

Why am I getting different validation between an XSD regex with Nokogiri and normal Ruby regular expressions?

I have an XSD schema that includes a rule for a specific field to match the following regex: \d{8}[\-]?[A-Za-z]{0,3} Using irb, I can test with this regex and the following strings all match, which ...
0
votes
1answer
12 views

Htaccess Not Working - Redirect 301

Due to some bad URLs, we generated some links that don't work and I want to redirect them with a 301 redirect to clear up some webmaster tools issues with Google. So, we have this URL like this: ...
1
vote
0answers
20 views

Call REGEXP_LIKE using LINQ to Entities with Oracle

So if I have an Oracle query like this: SELECT * FROM xyz WHERE REGEXP_LIKE(col1, '^[0-9]+$'); How can I call REGEXP_LIKE using LINQ to Entities with the Oracle.DataAccess client: var q = from x ...
1
vote
1answer
61 views

Invoking Regex.IsMatch() inside a dynamic linq query

I'm trying to invoke the Regex.IsMatch() and evaluate the returned result inside a dynamic linq query. This is what I tried: public static LambdaExpression Parse(SearchQuery query) { string ...
-1
votes
1answer
39 views

Converting Posix Regex to PCRE in PHP [duplicate]

I have a cms that on the front-end grabs pages by id, as shown here: $pageid = ereg_replace("[^0-9]", "", $_GET['pid']); This is some old code I am trying to update since POSIX is deprecated, ...
2
votes
4answers
51 views

How to search for a special character in java string?

I am having some problem with searching for a special character "(". I got a java.util.regex.PatternSyntaxException exception has occurred. It might have something to do with "(" being treated as ...
1
vote
2answers
44 views

regexp to match all images without link [duplicate]

I use this regex to match all images. How I can rewrite it to match all images WITHOUT </a> in the end ? preg_match_all ("/\<img ([^>]*)\/*\>/i", $text, $dst);
0
votes
1answer
23 views

Debugging a Javascript RegExp Regular Expression: Validation Hangs on Amazon URL

In using Javascript to validate a URL, I used the following code from an SO answer: function validateURL(textval) { var urlregex = new RegExp( ...
0
votes
4answers
65 views

Regex in Python for html

I wanted to write a regex expression for: <td class="prodSpecAtribute" rowspan="2">[words]</td> or <td class="prodSpecAtribute">[words]</td> for the second case I have: ...
13
votes
4answers
765 views

Can someone break this lambda expression down for me?

I'm looking at the solution from Token Replacement and Identification: string result = Regex.Replace( text, @"\[%RC:(\d+)%\]", match => dict[int.Parse(match.Groups[1].Value)]); And ...
1
vote
3answers
47 views

Java: replaceFirst does not work, but replace works on the exact same input?

I am writing a program where a portion of it needs to replace part of the string without deleting duplicates so I am using replaceFirst() which is not working properly. INPUT: lock: "O_2_^-^" str: ...
1
vote
3answers
38 views

Extract IP and Pointer Record from zone file

I'm reading in a file which is part of an AXFR file that I have exported to a txt file. Basically, I cat out the file, grep out ONLY the PTR records (I'm only interested in these right now). I've ...
1
vote
5answers
38 views

Preg_match and substr together

I have a string that I need to test to see if the characters after the [0] character (the very first) are numbers or not. So example : C is [0] I then need to check if the remaining characters are ...
2
votes
5answers
78 views

Regex less than or greater than 0

I'm trying to find a regex that validates for a number being greater or less than 0. It must allow a number to be 1.20, -2, 0.0000001, etc...it simply can't be 0 and it must be a number, also means ...
-3
votes
1answer
67 views

How can I remove all special characters except dot (.) in python? [closed]

How can i remove all special characters like "!@#$%^&*()_+" and similar things in python except dot (.), alphanumeric and space in python?
-5
votes
3answers
31 views

Using regex how do you extract a number following a string? (the output should be just the number)

How would I do this using regex? Example input: This is a sentence 1234 with a bunch of other stuff output: 1234 I know if I do this: "(?<=This is a sentence).\d\d\d\d" I can replace the four ...
0
votes
1answer
25 views

VBA RegEx extracting data from within a string

I am new to RegEx and I can't seem to figure out why this is not working. I had it working but lost my data. I have tried all sorts of variations and I can't remember what I did to get this to work ...
1
vote
2answers
33 views

Matching content between two point php regex

I'm trying to create a regex to replace href="/test/any-word-here" with href="/search/theword.html" I'm pretty new to regex's so I'm not exactly sure what I'm doing but I came up with this ...
-1
votes
3answers
50 views

Ruby - how to pull out that is betweet two “points”?

I have a text like this: ... Sentence one. hsjdhsd jghdsjghjdskhgjksdh kjghdsjkg sdgsdg dgds hfdhdf h fdh dfh Sentence two. gdjshagjhsdga sdgjhsdkjgh adskjghdsa gs a gfdgfdhfdhh ... And I would ...
0
votes
3answers
52 views

how to parse watch command output to last 5 digits?

From the command watch -n1 "ifconfig eth0 | grep GiB" I have output given below, RX bytes:730624111504 (680.4 GiB) TX bytes:31815434434 (29.6 GiB) Now I just want the last 5 digits before ...
-1
votes
2answers
40 views

Python regex to replace double backslash with single backslash

I'm trying to replace all double backslashes with just a single backslash. I want to replace 'class=\\"highlight' with 'class=\"highlight'. I thought that python treats '\\' as one backslash and ...
-5
votes
2answers
37 views

create a regular expression of a specific sentence [closed]

I am using a constraint file for my system and basically i am using this line for parsing my values: angle(Vector(JointA,jointB),Vector(JointA,jointB),minValue,maxValue) Can you please help me and ...
0
votes
4answers
60 views

python regex, match in multiline, but still want to get the line number

I have lots of log files, and want to search some patterns using multiline, but in order to locate matched string easily, I still want to see the line number for matched area. Any good suggestion. ...
1
vote
2answers
83 views

Why my Regex let me write “,” (Comma)?

I have a javascript regex function code above: function AcceptDigits(objtextbox) { var exp = /[^\d{1,3}]/g; objtextbox.value = objtextbox.value.replace(exp, ''); }; Always that I write a ...
0
votes
3answers
51 views

Regex match conditional but dont return it

Here I am trying to get something clear on regexes. I've created this regex: a.match( /(@|#)(.*?)(\s|$|\:)/g ) It matches all users and hastags in a tweet. Problem is they return the condition( ...
1
vote
5answers
67 views

Regular expression to extract SQL query

Is there a regex which extracts SQL queries from a string? I'm NOT interested to validate any SQL syntax, rather and only extracting a selection of SQL commands. This to parse a given SQL file/string ...
4
votes
2answers
25 views

Unexpected working of Negated Shorthand Character Classes

The Regular expression /[\D\S]/ should match characters Which is not a digit or not whitespace But When I test this expression in regexpal It starts matching any character that's digit, ...
3
votes
3answers
53 views

Validating numeric sequence

I am using Java and I need to validate a numeric sequence like this: 9999/9999. I tried using this regex \\d{4}\\\\d{4}, but I am getting false for matches(). My code: Pattern regex = ...
0
votes
2answers
35 views

Extending Validation Library - CI2

I need a to set up a validation for student ID's and the CI native library is not cutting it, so I extended. I however am having an issue getting it work, and I don't quite know where I am goofing up. ...
0
votes
1answer
68 views

Regex: Remove everything except emoticons. how? [duplicate]

If I have string such as "I love my country :) :D. I like myself :P -_- .", how to remove everything except Emoticons - so the resulting string should be without any text ? Input String or text can ...
1
vote
1answer
20 views

How to do pattern matching on mulit line string?

mystring = " <div class="text"> Spor </div> "; pattern ="<div class=\"text\">(.*)</div>"; Pattern regEx = Pattern.compile(pattern, Pattern.MULTILINE); Matcher m = ...

1 2 3 4 5 1186