Tagged Questions

1
vote
2answers
74 views

BEGINNER: extracting subsets of data

Hello, this seems to be an easy task really, but being completely new to the world of programming, I have problems with the following task: I have a huge file which has the following format: track …
0
votes
4answers
48 views

Regular Expression String Omit Question

I'm trying to parse some AS3 with the use of Regular Expressions. I cannot, for the life of me, figure out how to omit matches that are inside of string quotations. I need to match test in the …
0
votes
2answers
22 views

Shorter REGEXP for MySQL query

I want to do a MySQL query to get the following effect: table_column [varchar] ----------------------- 1|5|7 25 55|12 5 3&5 5|11 I want a reliable way to get all the …
5
votes
2answers
92 views

Will [a-z] ever match accented characters in PREG/PCRE?

I'm already aware that \w in PCRE (particularly PHP's implementation) can sometimes match some non-ASCII characters depending on the locale of the system, but what about [a-z]? I wouldn't think so, …
-1
votes
1answer
21 views

Parsing a custom string-generating-pattern syntax

Background: I'm developing a custom regex-like syntax for URL filenames. It will work like this: User writes a pattern, something like "[a-z][0-9]{0,2}", and passes it as input It is parsed by the …
1
vote
4answers
67 views

Prevent RegEx Hang on Large Matches…

This is a great regular expression for dates... However it hangs indefinitely on this one page I tried... I wanted to try this page ( http://pleac.sourceforge.net/pleac%5Fpython/datesandtimes.html ) …
1
vote
4answers
69 views

Convert a complicated string into an array in php

I have a php variable that comes from a form that needs tidying up. I hope you can help. The variable contains a list of items (possibly two or three word items with a space in between words). I want …
1
vote
2answers
38 views

Regex Pattern for findin http in PHP

Hello everyone, how can i extract the http from this text? "Text: Here's 2 free bonuses. http://blablabla.blabla/blabla " But the url can also be another one. Finaly After i have the array, wich …
0
votes
2answers
17 views

Regex error when handling with tags

I am trying to convert this: [img,src=http://www.ANYTHINGHERE.com/image.png,width=55px,height=105px]<br /> To this: <img src="http://www.ANYTHINGHERE.com/image.png" width=55px …
7
votes
12answers
1k views

Mass string replace in python?

Say I have a string that looks like this: str = "The &yquick &cbrown &bfox &Yjumps over the &ulazy dog" You'll notice a lot of locations in the string where there is an …
0
votes
2answers
64 views

regex to remove URL from text

I want to remove all occurrences of URL [full path, query string] from the text in Python. Any suggestions on how to do this? I am new to regex! http://example.com/url/?x=data This whole URL should …
3
votes
3answers
63 views

Similar but not same string sequence

How to match the following sequence: You wound DUMMY TARGET for 100 points of damage but not: You wound DUMMY TARGET with SKILL for 100 points of damage with the regular expression: ^You wound …
1
vote
2answers
19 views

regex: converting php code from eregi to preg_match

Hi. I'm trying to find the proper regular expression to convert eregi($1,$2) to preg_match("/$1/i",$2) i need to consider if there will be functions with () in it, and they may appear more then once. …
2
votes
2answers
51 views

Regex-problem in C#

I'm trying to write a regular expression that will check so a given string is a "valid" name. The name-strings are retrieved from a database and then checked to see if they contain weird chars. (Since …
2
votes
7answers
145 views

Is this possible with regular expressions?

Something like this: /[abcd]/[efgh]/ The idea is that a will get replaced with e, b with f, c with g and so on. Ideally, this should be language independent. If that isn't possible, I have an …

1 2 3 4 5 328 next
15 30 50 per page