in reply to A regex that does this, but not that?
I'm not sure I entirely understand your requirements, but /t(?!est\b)\w*t/ would match any 't' not followed by 'est' and a word break then match 0 or more word characters and then match one last 't'. For example (anchors added):
prints everything but 'test'.#!/usr/bin/perl -w use strict; /^t(?!est\b)\w*t$/ and print while <DATA>; __DATA__ test testset tot tesset tt
Adapting it slightly for your original problem like this
prints "test 1 2 3" just as you want.#!/usr/bin/perl -lw use strict; $_ = "thought test tot 1 2 3 tesset"; s/t(?!est\b)\w*t\s*//g; print;
-sauoq "My two cents aren't worth a dime.";
|
|---|