Id like to know how I can covert a string into a pascal case string in javascript (& most probally regex).
Conversion Examples:
- double-barrel = Double-Barrel
- DOUBLE-BARREL = Double-Barrel
- DoUbLE-BaRRel = Double-Barrel
- double barrel = Double Barrel
Check this link for further info on Pascal Case
The regex finds words (here defined using
\w– alphanumerics and underscores), and separates them to two groups – first letter and rest of the word. It then uses a function as a callback to set the proper case.Example: http://jsbin.com/uvase
Alternately, this will also work – a little less regex and more string manipulation:
I should add this isn’t pascal case at all, since you have word barriers (
helloworldvshello-world). Without them, the problem is almost unsolvable, even with a dictionary. This is more commonly called Title Case, though it doesn’t handle words like “FBI”, “the” or “McDonalds”.