upperInitial() doesn't handle contractions
upperInitial() doesn't handle contractions
upperInitial incorrectly capitalizes contractions in show or episode names. e.g. earth'S, don'T
Re: upperInitial() doesn't handle contractions
Changed upperInitial() to
Code: Select all
replaceAll(/(?<=[&()+.,-;<=>?\[\]_{|}~ ]|^)[a-z]/, { it.toUpperCase() })
Re: upperInitial() doesn't handle contractions
Awesome thanks!