how to match ^ (begin of line) and $ (end of line) in a [] (character group)?


simple example

haystack string: zazty

rules:

  1. match any "z" or "y"
  2. if preceded by
    1. an "a", "b"; or
    2. at the beginning of the line.

pass: match the first two "z"

a regexp that would work is: (?:^|[aAbB])([zZyY])

But I keep thinking it would be much cleaner with something like that meant beginning/end of line inside the charater group [^aAbB]([zZyY]) (in that example assumes the ^ means beginning of line, and not what it really is there, a negative for the character group)


note: using python. but knowing that on bash and vim would be good too.

Update: read again the manual it says for set of chars, everything lose it's special meaning, except the character classes (e.g. \w)

down on the list of character classes, there's \A for beginning of line, but this does not work [\AaAbB]([zZyY])

Any idea why?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

You can't match a ^ or $ within a [] because the only characters with special meaning inside a character class are ^ (as in "everything but") and - (as in "range") (and the character classes). \A and \Z just don't count as character classes.

This is for all (standard) flavours of regex, so you're stuck with (^|[stuff]) and ($|[stuff]) (which aren't all that bad, really).

link|improve this answer
well, it IS bad because, in python, i'm now stuck with findall(). as search() will also return the characters matched with (?:...). Not the end of the world, I know... – gcb Feb 6 at 4:56
Couldn't you use capturing brackets around the bit you want and use match.group(1)? You already have the capturing brackets there. m.start(1), m.end(1), etc. – mathematical.coffee Feb 6 at 5:00
with negative lookbehind you can actually do that, look at my answer below – guido Feb 6 at 5:01
@gcb, try look behinds. Behavior of search may differ. – Alex Nikolaenkov Feb 6 at 5:02
don't know why, but for search('(?:a)(z)'), i get "az". i'm using findall('(?:a)(z)') for now wich return proper matching groups just fine (in this case just "z"), even though i only need the first match – gcb Feb 6 at 5:03
show 1 more comment
feedback

Try this one:

(?<![^abAB])([yzYZ])
link|improve this answer
I wonder whether positive or negative look behinds are more efficient in terms of this task. – Alex Nikolaenkov Feb 6 at 5:05
feedback

Why not trying escape character \? ([\^\$])

UPDATE: If you want to find all Zs and As preceded by "a" than you can use positive lookbehind. Probably there is no way to specify wild cards in character groups (because wild cards are characters too). (It there is I would be pleased to know about it).

private static final Pattern PATTERN = Pattern.compile("(?<=(?:^|[aA]))([zZyY])");

public static void main(String[] args) {
    Matcher matcher = PATTERN.matcher("zazty");

    while(matcher.find()) {
        System.out.println("matcher.group(0) = " + matcher.group(0));
        System.out.println("matcher.start() = " + matcher.start());
    }
}

Output:

matcher.group(0) = z
matcher.start() = 0
matcher.group(0) = z
matcher.start() = 2
link|improve this answer
2  
Nah, then it just means a literal ^ -- still not "beginning of line". – ruakh Feb 6 at 4:36
special chars (e.g. ^+!*?...) lose their meaning. ^ becomes "not" if it's the first char. – gcb Feb 6 at 4:41
isn't the look-behind group extraneous? i mean, you are passing a non-matching group to the look-behind group – gcb Feb 6 at 5:05
you still have a non-capturing group and the or condition this way – guido Feb 6 at 5:07
@gcb, yes it is. But you might want to leave it because it explicitly shows that there is no match. – Alex Nikolaenkov Feb 6 at 5:07
feedback

Your Answer

 
or
required, but never shown

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