Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,026 questions

51,982 answers

573 users

How to convert a string to PascalCase using RegEx in TypeScript

1 Answer

0 votes
function getPascalCase(input: string): string {
    if (!input.includes(" ")) {
        input = input.replace(/(?<=[a-z])(?=[A-Z])/g, " ");
    }
 
    const words: string[] = input.toLowerCase().split(/[\s_]+/);
    let result: string = "";
 
    for (let word of words) {
        if (word.length > 0) {
            result += word[0].toUpperCase() + word.slice(1);
        }
    }
 
    return result;
}
 
console.log(getPascalCase("get file content"));
console.log(getPascalCase("get_file_content"));
console.log(getPascalCase("get______file___content"));
console.log(getPascalCase("get______file____  content"));
console.log(getPascalCase("GET FILE CONTENT"));
console.log(getPascalCase("get    file      content"));
console.log(getPascalCase("getFileContent"));
 
 
    
/*
run:
    
"GetFileContent" 
"GetFileContent" 
"GetFileContent" 
"GetFileContent" 
"GetFileContent" 
"GetFileContent" 
"GetFileContent" 
   
*/

 



answered Feb 23, 2025 by avibootz

Related questions

1 answer 87 views
2 answers 100 views
1 answer 82 views
1 answer 90 views
1 answer 87 views
1 answer 79 views
3 answers 99 views
...