Skip to content

Instantly share code, notes, and snippets.

@preaction
Created January 31, 2018 19:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save preaction/601b82853328c513149a98d4a0305647 to your computer and use it in GitHub Desktop.
Save preaction/601b82853328c513149a98d4a0305647 to your computer and use it in GitHub Desktop.
use v5.24;
use warnings;
my $message = 'this is a log message endofmessage;dept_id=neteng';
my $trunc = $message =~ s/\s*;?(?:[^=;\s]+=[^;=\s]+(?:[ ;]|$))+//r;
say "Message: $message";
say "Trunc: $trunc";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment