Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to be able to locate this pattern '_*' meaning starts with '_' and ends with either a white space or a new line.

also I have another regex to locate a word of capital letters only: [A-Z]+ is this accurate, or there's a better way of writing it?

I use Java.

share|improve this question

4 Answers

up vote 0 down vote accepted

As far as [A-Z]+ goes, it will work with latin input. So will \p{Upper}+

If you need to support a wider character set, consider \p{Lu}+ which will match any upper case unicode character.

Pattern's javadoc is good! http://download.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html

share|improve this answer

If you try

String _command = "AFTER_2011/03/01 GREATER_2004";
Pattern patt = Pattern.compile("_\\S+");
Matcher matcher = patt.matcher(_command);
while(matcher.find()) {
    String name = _command.substring(matcher.start()+1, matcher.end());
    System.out.println(name);
}

it prints

2011/03/01
2004

EDIT: As @Alan Moore suggests you can do the following.

String _command = "AFTER_2011/03/01 GREATER_2004";
Pattern patt = Pattern.compile("_(\\S+)");
Matcher matcher = patt.matcher(_command);
while(matcher.find()) {
    String name = matcher.group(1);
    System.out.println(name);
}
share|improve this answer
1  
+1 for the correct regex, but if you really need to strip the leading underscore, why not use "_(\\S+)" and retrieve the captured text with m.group(1)? – Alan Moore Mar 10 '11 at 6:30
@Alan Moore, Thank you for the suggestion. I have added this as an alternative. – Peter Lawrey Mar 10 '11 at 9:04
Pattern pattern = Pattern.compile("_.*(\\s|\\n)");
Matcher matcher = pattern.matcher(_command);

// Find all matches
while (matcher.find()) {
  // Get the matching string
  String match = matcher.group();
}    

[A-Z]+ is fine

If you want code too let me know

share|improve this answer
\s already matches \n, so (\s|\n) is just less efficient way to match \s. And it still won't find a match at the end of the string like @Peter's solution does. – Alan Moore Mar 10 '11 at 6:46

If regex is _.*(\s|\n) using Java, you'll have to write the same as _.*(\\s|\\n)

Update:

Resulting groups are those parts of the regex within brackets. So currently get only the last space or line break.

Try with this regex:

(_.*\\s+)

share|improve this answer
didn't know that in java, cheers – Chimoo Mar 9 '11 at 9:17
\s is equivalent to [ \t\r\n\f\v], so matching \n or \r in addition to \s is pointless. Also, the OP is trying to locate matches within a larger string, so the anchors (^ and $) are inappropriate. – Alan Moore Mar 10 '11 at 6:41
The point was just to show the backslash duplication in Java. The initial regex was inspired from another answer. True it's not very precise. I'll update. – bw_üezi Mar 10 '11 at 7:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.