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,025 questions

51,979 answers

573 users

How to convert a string to PascalCase using RegEx in Scala

1 Answer

0 votes
object PascalCase {
  def getPascalCase(input: String): String = {
    var str = input
    if (!input.contains(" ")) {
      str = input.replaceAll("(?<=[a-z])(?=[A-Z])", " ")
    }

    val words = str.toLowerCase().split("[\\s_]+")
    words.map(word => word.capitalize).mkString("")
  }

  def main(args: Array[String]): Unit = {
    println(getPascalCase("get file content"))
    println(getPascalCase("get_file_content"))
    println(getPascalCase("get______file___content"))
    println(getPascalCase("get______file____  content"))
    println(getPascalCase("GET FILE CONTENT"))
    println(getPascalCase("get    file      content"))
    println(getPascalCase("getFileContent"))
  }
}



/*
run:

GetFileContent
GetFileContent
GetFileContent
GetFileContent
GetFileContent
GetFileContent
GetFileContent
 
*/

 



answered Feb 23, 2025 by avibootz

Related questions

1 answer 87 views
2 answers 99 views
1 answer 90 views
1 answer 87 views
1 answer 79 views
...