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 Swift

1 Answer

0 votes
import Foundation

func getPascalCase(_ input: String) -> String {
    var str = input
    if !str.contains(" ") {
        str = str.replacingOccurrences(of: "(?<=[a-z])(?=[A-Z])", with: " ", options: .regularExpression)
    }

    let words = str.lowercased().components(separatedBy: CharacterSet.whitespacesAndNewlines.union(CharacterSet(charactersIn: "_")))
    var result = ""

    for word in words {
        if !word.isEmpty {
            result += word.capitalized
        }
    }

    return result
}

print(getPascalCase("get file content"))
print(getPascalCase("get_file_content"))
print(getPascalCase("get______file___content"))
print(getPascalCase("get______file____  content"))
print(getPascalCase("GET FILE CONTENT"))
print(getPascalCase("get    file      content"))
print(getPascalCase("getFileContent"))



/*
run:

GetFileContent
GetFileContent
GetFileContent
GetFileContent
GetFileContent
GetFileContent
GetFileContent

*/

 



answered Feb 23, 2025 by avibootz

Related questions

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