0
votes
Regex to remove conditional comments
As I see it, you only need to worry about downlevel-hidden comments (the ones that start with <!--), and you don't need to match anything beyond the word if an …
1
vote
Regexp: Substituting a version number in an XML file
Assuming you're using the replaceregexp task:
<replaceregexp file="whatever"
match="(<feature\b[^<>]+?version=\")[^\"]+"
repla …
2
votes
Is java.util.regexp efficient enough?
Overall, the java.util.regex (not "regexp") package is at least as good any other Java regex library, including Jakarta ORO (yo …
4
votes
1
vote
Regex to find static (non final) variables
Instead of checking for the absence of a brace, I would look for a semicolon at the end:
^(?!.*\bfinal\b).*\bstatic\b.*;[ \t]*$
…
1
vote
Escape path separator in a regular expression
Is there any way to use a common regular expression that works in both Windows and UNIX systems ?
Yes, just use a regex that matches both kinds of separator. …
4
votes
How do I tokenize input using Java’s Scanner class and regular expressions?
The name "Scanner" is a bit misleading, because the word is often used to mean a lexical analyzer, and that's not what Scanner is for. All it is is a substitute for the scanf() functi …
2
votes
Regexp for quoted string with escaping quotes
Friedl's classic "unrolled-loop" pattern:
/"[^"\\]*(?:\\.[^"\\]*)*/
…
2
votes
Have you used the Perl 5.10 backtracking control verbs in your regexes yet?
It's been years since I did any Perl programming, so I didn't even know about this feature until you mentioned it. It looks like one of those hardcore feature that only regex gurus would use (of c …
0
votes
Regex Question - One or more spaces outside of a quote enclosed block of text
Jeff, you're on the right track, but there are a few errors in your code, to wit: (1) You forgot to escape the quotation marks inside the negated character classes; (2) The parens inside the first …
0
votes
Regex Question - One or more spaces outside of a quote enclosed block of text
Here's another approach, that uses a lookahead to determine that all quotation marks after the current position come in matched pairs.
text = text.replaceAll(" ++(?=(?:[^\"]*+\"[^\ …
1
vote
Why are regular expressions such a complicated, cryptic mess?
I think the biggest problem (or anyway, the first problem) is that regexes are composed of the same characters they're supposed to match. You practically have to examine each character one-by-one …
1
vote
Is there a way to split strings with String.split() and include the delimiters?
I got here late, but returning to the original question, why not just use lookarounds?
Pattern p = Pattern.compile("(?<=\\w)(?=\\W)|(?<=\\W)(?=\\w)");
System.out.println(Array …
0
votes
How do you read this JavaScript regular expression?
@CodeCurious, you're still making it more complicated than it needs to be. The regex /^0+$/ merely means the entire string consists of one or more zeros. Regexes offer plenty of oppo …
1
vote
RegEx to replace value including new lines
@Will, by replacing the dot with a negated character class, you eliminated the need for the single-line modifier. And if I'm reading the question right, you don't need to use lookarounds either. …
