The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
38 views

Visual Studio regex standard and the regex tag

I was posting a question on using regex in Visual Studio 2010 in the Find In Files search window and suddenly realized that Visual Studio 2010 has its own regex standard for this (Visual Studio 2012 ...
10
votes
0answers
117 views

Automatically recognize and remove “thanks”

There is a regex that should automatically remove all greetings from the top of posts. It does its job very well: ^ # begins at start of body \s* # possible spaces ( ...
9
votes
2answers
188 views

Why are poor quality Regex questions so quickly answered?

I've noticed that most low effort, low quality, fish begging answers are met with a deserving "what have you tried?", while low effort, low quality regex questions are rarely met with the same ...
11
votes
1answer
186 views

How to handle regex syntax highlighting?

Many questions about regex include code blocks with language agnostic, POSIX compatible patterns, using default prettifying. (example) This looks kind of ugly and is confusing, since some parts are ...
1
vote
0answers
70 views

How does SO parse out URLs so well from answers and comments

There are a number of questions already on SO about parsing out a URL from text (here and here are 2 ok examples I've found). Even @Jeff Atwood posted a blog entry about this. These are a bit ...
5
votes
4answers
340 views

Why do parsing HTML with regex questions come up so often?

I mean is it really such a common desire/requirement? Or is someone out there trolling SO on a huge scale?
1
vote
2answers
190 views

What what? [regex] badge error? [duplicate]

Possible Duplicate: Tag-badges exploit According to the badges page, there has been 1 silver and 1 gold badge awarded for the [regex] tag on Stack Overflow. So I said "congrats" to the guy ...
2
votes
2answers
196 views

Padding a comment with spaces

Currently, the 15 char minimum on comments can be defeated by padding out the middle with spaces. Fix: s/\s+/ / HTML ignores extra spaces anyway.