[TMT] Implement Bebop & Rocksteady

This commit is contained in:
theelk801 2025-10-10 16:43:08 -04:00
parent 159933cc8a
commit 747730568e
3 changed files with 49 additions and 0 deletions

View file

@ -20,6 +20,7 @@ sub toCamelCase {
my $string = $_[0];
$string =~ s/\b([\w']+)\b/ucfirst($1)/ge;
$string =~ s/[-,\s\':.!\/]//g;
$string =~ s/\&/And/g;
$string;
}