Thanks!
I didn't knew that feature.
It's very cool!
Thank you very much.
Best regards,
David Santiago
On Sat, 6 May 2017 23:03:48 +0100
David Precious wrote:
> On Sat, 6 May 2017 23:13:04 +0200
> David Emanuel da Costa Santiago wrote:
> > Is there any regular expression, that can match an
On Sat, 6 May 2017 23:13:04 +0200
David Emanuel da Costa Santiago wrote:
> Is there any regular expression, that can match any consecutive
> character?
You want to use a back-reference - e.g. /(.)\1+/ matches any character
followed by one or more of that same character.
Demo:
[davidp@cloudburst