I want to write a regular expression to do the following.
The first character can be any character.
The second character can be anything except the first character.
The third character can be anything except the first two characters.
(This is a problem. There may be other problems.)
The fourth character is the same as the second character.
st = "abcb"
p st =~ /^(.)([^\1])([^\1\2])(\2)$/ # I expected a match
uv = "abbb"
p uv =~ /^(.)([^\1])([^\1\2])(\2)$/ # I did not expect a match
They both match.
How can I write the regular expression?
Somehow I have the syntax wrong.
Yes - I don't think a backreference like \1, which could contain any
number of characters, is usable inside a character class [...], which is
a list of individual characters.
I second Brian: to solve this with a regular expression is either
extremely costly (large expression) or even impossible. If I
understand you properly then you want to avoid repetitions. How
about:
I want to write a regular expression to do the following.
The first character can be any character.
The second character can be anything except the first character.
The third character can be anything except the first two characters.
(This is a problem. There may be other problems.)
The fourth character is the same as the second character.
st = "abcb"
p st =~ /^(.)([^\1])([^\1\2])(\2)$/ # I expected a match
uv = "abbb"
p uv =~ /^(.)([^\1])([^\1\2])(\2)$/ # I did not expect a match
They both match.
How can I write the regular expression?
Somehow I have the syntax wrong.
I'm not sure if you still want the regex, but following regex should do the trick: ^(.{1})(?!\1)(.{1})(?!\1|\2).{1}\2$
Harry Kakueki wrote:
···
I want to write a regular expression to do the following.
The first character can be any character.
The second character can be anything except the first character.
The third character can be anything except the first two characters.
(This is a problem. There may be other problems.)
The fourth character is the same as the second character.
st = "abcb"
p st =~ /^(.)([^\1])([^\1\2])(\2)$/ # I expected a match
uv = "abbb"
p uv =~ /^(.)([^\1])([^\1\2])(\2)$/ # I did not expect a match
They both match.
How can I write the regular expression?
Somehow I have the syntax wrong.
Sometimes I want to avoid repetition and sometimes I want to have repetition.
My goal here is not just to solve such a problem.
My goal is to learn how to write this type of regular expression using
\1, \2, etc.
I did not understand the syntax.
Thanks,
Harry
···
On Fri, May 29, 2009 at 6:49 PM, Robert Klemme <shortcutter@googlemail.com> wrote:
2009/5/29 Harry Kakueki <list.push@gmail.com>:
I want to write a regular expression to do the following.
The first character can be any character.
The second character can be anything except the first character.
The third character can be anything except the first two characters.
(This is a problem. There may be other problems.)
The fourth character is the same as the second character.
st = "abcb"
p st =~ /^(.)([^\1])([^\1\2])(\2)$/ # I expected a match
uv = "abbb"
p uv =~ /^(.)([^\1])([^\1\2])(\2)$/ # I did not expect a match
They both match.
How can I write the regular expression?
Somehow I have the syntax wrong.
I second Brian: to solve this with a regular expression is either
extremely costly (large expression) or even impossible. If I
understand you properly then you want to avoid repetitions. How
about:
I need to read that section carefully to be sure I understand.
But, I think that does the trick.
Thank you!
Harry
···
On Fri, May 29, 2009 at 5:48 PM, Brian Candler <b.candler@pobox.com> wrote:
Harry Kakueki wrote:
Somehow I have the syntax wrong.
Yes - I don't think a backreference like \1, which could contain any
number of characters, is usable inside a character class [...], which is
a list of individual characters.
The problem with this approach is that it does not work for strings of
arbitrary length. Even if you adjust it to work for multiple lengths
you always have a fixed upper limit for which it can work.
Kind regards
robert
···
2009/5/29 Harry Kakueki <list.push@gmail.com>:
On Fri, May 29, 2009 at 5:48 PM, Brian Candler <b.candler@pobox.com> wrote:
The problem with this approach is that it does not work for strings of
arbitrary length. Even if you adjust it to work for multiple lengths
you always have a fixed upper limit for which it can work.
The OP explicitly said that he wanted to match single characters. It
would also make sense for other fixed-width fields, or delimited fields.
With neither fixed sizes nor delimiters, I don't think it makes any
sense. It would become "match any sequence of characters, followed by
any sequence of characters which isn't the same as the first sequence of
characters, followed by any sequence of characters which isn't the first
or second, followed by the second sequence of characters". And there
would be a squillion different ways to try and slice the string to make
it match.
The problem with this approach is that it does not work for strings of
arbitrary length. Even if you adjust it to work for multiple lengths
you always have a fixed upper limit for which it can work.
The OP explicitly said that he wanted to match single characters. It
would also make sense for other fixed-width fields, or delimited fields.
But he did not state explicitly that the _strings_ that he wanted to
analyze have fixed length. This is where your approach breaks. If
his strings are always of maximum length four or he only needs to make
sure the four first characters do not repeat then it will work.
"Four" could easily be any number up to "nine" but even then naming of
groups might cause trouble; in any case the expression will soon look
ugly, especially if strings can be "up to N" characters long.
With neither fixed sizes nor delimiters, I don't think it makes any
sense. It would become "match any sequence of characters, followed by
any sequence of characters which isn't the same as the first sequence of
characters, followed by any sequence of characters which isn't the first
or second, followed by the second sequence of characters". And there
would be a squillion different ways to try and slice the string to make
it match.
The OP explicitly said that he wanted to match single characters. It
would also make sense for other fixed-width fields, or delimited fields.
But he did not state explicitly that the _strings_ that he wanted to
analyze have fixed length. This is where your approach breaks.
But he's not just looking for strings with non-repeating characters.
Note the rule that says the fourth character must be equal to the second
character. This is an application-specific rule; I don't think we can
logically extend that to guess what the rule for the fifth or subsequent
characters would be.
With neither fixed sizes nor delimiters, I don't think it makes any
sense. It would become "match any sequence of characters, followed by
any sequence of characters which isn't the same as the first sequence of
characters, followed by any sequence of characters which isn't the first
or second, followed by the second sequence of characters". And there
would be a squillion different ways to try and slice the string to make
it match.
That's beyond the power of regular expressions.
It's perfectly possible to express it as a regular expression, but you
have to beware that there could be many ways for it to match, so you
might not get what you expect.
Well, yes. I just did it but I see that the conclusion is not
necessarily a valid one. So let's hope for a better requirements spec
next time.
Cheers
robert
···
2009/5/29 Brian Candler <b.candler@pobox.com>:
Robert Klemme wrote:
2009/5/29 Brian Candler <b.candler@pobox.com>:
The OP explicitly said that he wanted to match single characters. It
would also make sense for other fixed-width fields, or delimited fields.
But he did not state explicitly that the _strings_ that he wanted to
analyze have fixed length. This is where your approach breaks.
But he's not just looking for strings with non-repeating characters.
Note the rule that says the fourth character must be equal to the second
character. This is an application-specific rule; I don't think we can
logically extend that to guess what the rule for the fifth or subsequent
characters would be.