> On Apr 17, 2018, at 1:39 PM, Phil Stracchino <[email protected]> wrote: > > In a Perl-compatible regular expression, you want something like this: > > /.{,64}(your linked profile)/
Which (when used verbatim) is equivalent to:
/your linked profile/
To restrict the match to strings where the desired pattern is at 64 bytes after
the start of the string, it would have to be anchored:
/^.{,64}your linked profile/
--
--
Viktor.
