in reply to Nonrepeating characters in an RE
I'm somewhat surprised by the amount of confusion in this thread, and am starting to wonder if somehow it is me that is being stupid.
From the first paragraph I discern that BernieC has a template, and from that wants to derive a regular expression that will match things according to the pattern described by the template.
The second paragraph shows that from the template "abcdefa" the regular expression should look something like /(.)?????\1/, and he wants help filling in the middle part, where each '?' should be replaced by a regexp fragment that ensures it represents a distinct letter.
So the template forms a pattern that inputs should match, where each letter in the template should match some arbitrary character of the input - but the same template letter should match the same character each time, and distinct template letters should always match distinct characters.
Thus an input like "Mississippi" would match a template "abccbccbddb". Given the template "abccbccbddb" he wants to generate a regular expression that will match an input like "Mississippi".
That's what I get from reading the OP.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Nonrepeating characters in an RE (updated)
by AnomalousMonk (Archbishop) on Aug 17, 2022 at 18:48 UTC | |
Re^2: Nonrepeating characters in an RE
by LanX (Saint) on Aug 17, 2022 at 19:59 UTC | |
by LanX (Saint) on Aug 18, 2022 at 18:30 UTC | |
by AnomalousMonk (Archbishop) on Aug 20, 2022 at 19:17 UTC | |
by hv (Prior) on Aug 20, 2022 at 22:40 UTC | |
by LanX (Saint) on Aug 21, 2022 at 18:29 UTC | |
by LanX (Saint) on Aug 21, 2022 at 00:22 UTC | |
by hv (Prior) on Aug 21, 2022 at 21:10 UTC | |
| |
by vr (Curate) on Aug 22, 2022 at 07:37 UTC | |
by rsFalse (Chaplain) on Oct 27, 2022 at 23:29 UTC |