const toPascalCase = (str: string) =>
str
.match(/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g)
.map(x => x.charAt(0).toUpperCase() + x.slice(1).toLowerCase())
.join('');
To pascal case
0
0
Giovanny Gongora
Converts a string to pascal case.
0 Comments
Add Comment
Log in to add a comment