update gen-list-unimplemented-cards-for-set

* remove periods from camel case name
This commit is contained in:
jmlundeen 2025-08-29 15:48:12 -05:00
parent 33c19fbc0f
commit 71cd3ce3fc

View file

@ -82,7 +82,7 @@ sub cardSort {
sub toCamelCase { sub toCamelCase {
my $string = $_[0]; my $string = $_[0];
$string =~ s/\b([\w']+)\b/ucfirst($1)/ge; $string =~ s/\b([\w']+)\b/ucfirst($1)/ge;
$string =~ s/[-,\s\'!@#*\(\)]//g; $string =~ s/[-,\s\'\.!@#*\(\)]//g;
$string; $string;
} }