Skip to content

Instantly share code, notes, and snippets.

@CernerJT
Created September 19, 2014 03:22
Show Gist options
  • Save CernerJT/bac549ad477f7ddb4de7 to your computer and use it in GitHub Desktop.
Save CernerJT/bac549ad477f7ddb4de7 to your computer and use it in GitHub Desktop.
Day 6 (9/18): Japh
#!/bin/perl
# Who doesn't like a good Japh?
$_="Cerner Corporation";
s/C/Just/g;
s/[Nerd]+/ Another/gi;
s/[Joust]{5}/ing/gi;
s/(?<=.{12})[Phone Art]{10}/ Health/gi;
s/(?:(?<=^.{12} )|.{16}$)/Engineer/g;
print;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment