Skip to content

Instantly share code, notes, and snippets.

@louiee
Created November 21, 2019 14:57
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 louiee/a19c521e579a58c061872dee49aa911f to your computer and use it in GitHub Desktop.
Save louiee/a19c521e579a58c061872dee49aa911f to your computer and use it in GitHub Desktop.
校訓にタグ
#!/usr/bin/perl
use 5.010;
my @t = qw/
校訓
 勤勉
 誠実
 謙虚/;
for(@t){
chomp;
if(/^ /){
$_ =~ s/(.*)/<li>$1<\/li>/ ;
}
say;
#$_ =~ /(.*),(.*)/;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment