Alan Moore

5,306
reputation
577 views

Registered User

name Alan Moore
member for 1 year
seen 39 mins ago
website
location
age
45m
comment HTML entities do not render correctly in browser after XSLT transform
Agreed. If you examine the HTML output from the Windows box in a hex viewer, you'll probably see the smart quotes as 93 and 94 and the NBSP as A0 - their windows-1252 encodings. It works as you expect it to on your Linux box because UTF-8 happens to be the default encoding for that platform.
11h
accepted How do I match non-ASCII characters with RegexKitLite?
1d
revised Regex to Parse Hyperlinks and Descriptions
Removed "sgml-not-regex" tag (again).
1d
revised How do I match non-ASCII characters with RegexKitLite?
improved title
1d
comment How do I match non-ASCII characters with RegexKitLite?
ASCII is a subset of UTF-8, so every ASCII file is also a UTF-8 file. As for the rest, see my edit.
1d
revised How do I match non-ASCII characters with RegexKitLite?
added 574 characters in body
2d
answered How do I match non-ASCII characters with RegexKitLite?
Dec
8
comment Formal language expressiveness of Perl patterns
Actually, "regex" is the preferred term for these mutant hybrids; "pattern" doesn't convey enough information. In Perl 6 they've been replaced with "Rules" (which can be assembled into "Grammars"), but "regex" is still accepted, too.
Dec
6
comment Replacing a Regex Match Collection in C#
Mark's right: this is exactly what MatchEvaluator is for. Also, if you want the contents of the first capturing group, match.Groups[1] is a lot more efficient than match.Result("$1").
Dec
5
revised Javascript “Invalid Date” error in Safari.
edited tags
Dec
5
revised compairing some pattern with regular expression C#
added 6 characters in body; edited tags
Dec
5
revised Does a regular expression exist for enzymatic cleavage?
edited tags
Dec
4
answered Javascript: The Good Parts; why is lookahead not good?
Dec
2
comment Java - escape string to prevent SQL injection
Since this is just a temporary kludge, go ahead and accept one of the PreparedStatement answers.
Dec
2
revised Combine Regexp
corrected errors pointed out by Ralph Willgoss
Dec
2
comment Combine Regexp
It's actually the second-to-last ) that doesn't belong there. Once that's fixed, the reason it doesn't work is because there's nothing in it that consumes characters--it's all lookaheads. I could make the last part not a lookahead, but for clarity's sake I'd rather add a .* to the end. I'm fixing it now; thanks for bringing it to my attention.
Dec
2
comment Regex help: capture an entire line if it starts with a 1. or 2. …
That if (m//) clause is redundant; the s/// operation does that for itself.
Dec
2
comment Regex help: capture an entire line if it starts with a 1. or 2. …
@Robert: Please use SO's built-in formatting instead of hand-written HTML.
Dec
2
revised Regex help: capture an entire line if it starts with a 1. or 2. …
fixed formatting
Dec
2
comment Javascript - replacing a word using regexp only if there’s a space around it.
@Jeremy, The OP said he wants to match words surrounded by whitespace; your regex will also match the test in #test&.
Dec
1
comment Java regular expression to match _all_ whitespace characters
It's one of the (many) standard Unicode property shorthands. They're mentioned in the Pattern API docs, though this one isn't among the examples. Here's a good overview: regular-expressions.info/unicode.html#prop/… But it's not as useful as it could be: it doesn't match linefeeds, tabs or (apparently) any other ASCII whitespace except the space (U+0020). Maybe that's why you never heard of it. :)
Dec
1
comment Java regular expression to match _all_ whitespace characters
Andomar mentioned \p{Z} first, in a comment under his own answer.
Dec
1
answered Java - escape string to prevent SQL injection
Dec
1
comment Java regular expression to match _all_ whitespace characters
Use \p{Z} or \p{Zs} instead. I've tested it in Java, and they do match U+00A0.
Nov
30
revised Java regular expression to match _all_ whitespace characters
Added backticks to make the NBSP entity show up
Nov
29
revised When is it wise to use regular expressions with HTML?
edited tags
Nov
26
comment Regular Expression to find all Email Matches help for C# application
\b does not match whitespace or any other character. It's a zero-width assertion, like the start and end anchors, lookaheads and lookbehinds. Given that every email addresses has to start and end with a word character, the OP definitely should use word boundaries.
Nov
24
revised Regular expression negative lookahead
fixed error in regex
Nov
24
comment Regular expression negative lookahead
Just FYI, there were some typos in the regexes; negative lookaheads are always (?!...), not (!?...).
Nov
24
revised Regular expression negative lookahead
fixed typos in regexes
Nov
24
revised Regular expression negative lookahead
fixed formatting
Nov
22
revised Regex to Parse Hyperlinks and Descriptions
edited tags
Nov
22
revised Is there any good book or website where I can learn php regular expressions?
edited body; edited tags
Nov
22
revised To comment out matches in Vim - independent on comment leader?
edited tags
Nov
21
comment Why do my captures not work in .NET regex?
I don't know about voting it up, but you can accept the solution--and should (assuming you're Mark Byers' answer).
Nov
17
comment Using the regular expression [\[\];] in flex
Many regex flavors support POSIX-style bracket expressions ( regular-expressions.info/posixbrackets.html/… ); some support set subtraction ([[a-z]-[aeiou]]) or intersection ([[a-z]&&[^aeiou]]). You can often get away with not escaping the [ anyway, but you'll never go wrong by escaping it.
Nov
17
comment Using the regular expression [\[\];] in flex
@Peter: in most flavors the [ would still have to be escaped: []\[;] (or []\\[;] in a context that requires backslashes to be escaped). To me, that looks even more confusing; better just to escape them both.
Nov
16
comment RegEx match open tags except XHTML self-contained tags
Can we all agree that this is the last word on the inadvisability of parsing (X)HTML with regexes? Please?
Nov
16
revised required and regular expression for float datatype
fixed formatting
Nov
15
revised Help needed for writing regular expression for this complex conditions
edited tags
Nov
15
comment Why does this `grep -o` fail, and how should I work around it?
Why would you want to grep on a regex that can match zero characters, anyway? I would expect it to match every line, not just lines with digits in them.
Nov
15
accepted Why is this regex being greedy?
Nov
14
comment Regex check previous line
They can't both be optional; to match exactly one of any of the three kinds of separator you need something like \r?\n|\r. I suppose we should keep doing it that way, but I hardly ever saw \r in the wild even before they made the switch.
Nov
14
comment Why is this regex being greedy?
A certain number of Regex objects get cached automatically, so storing one in a field won't necessarily have any effect on performance. Also, Compiled regexes may be faster, but they're much more expensive to create; whether you should use that option depends on how you're using the regex. blogs.msdn.com/bclteam/archive/…
Nov
14
comment Why is this regex being greedy?
FYI, the Multiline option isn't doing anything for you. If you want the dot to match line separators you should use Singleline instead.
Nov
14
answered Why is this regex being greedy?
Nov
14
accepted java.util.regex - importance of Pattern.compile()?
Nov
14
comment php regex: lookbehind and lookahead and greediness problem
/U is overkill in this case, what with there being only one quantifier. But I would avoid using /U in any case; it makes your regex less portable (few regex flavors support it) and less readable. People expect quantifiers to be greedy, and have to make a conscious effort to override that expectation. That's a lot easier to do when you're looking at the ? right next to the quantifier.
Nov
14
answered Regex check previous line
Nov
14
comment Regex check previous line
What if there are two lines in row that contain nothing but asterisks? Do you want to select the first one?