in reply to Finding repeat sequences.
since regex are greedy, this works for me
DB<131> $_='abcdabcdabceabcdabcdabceab' => "abcdabcdabceabcdabcdabceab" DB<132> ($match)= /(.+)\1/ => "abcdabcdabce"
edit: I doubt that the answer is so simple, but this should give you a start to ask more precisely...
Cheers Rolf
( addicted to the Perl Programming Language)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Finding repeat sequences.
by BrowserUk (Patriarch) on Jun 18, 2013 at 20:01 UTC |