Scala how can I uppercase first character and lowercase others

user1949387

I basically have a form that takes user input and I match it in the database. I want the first character uppercase and characters with spaces and all others lowercase. Right now I have this

  location= location.split(' ').map(_.capitalize).mkString(" ")

The code above does this: if a user types 'new york' it gets converted to 'New York', however if a user types NeW YoRk I still want it converted to the form 'New York'.

dth

Just convert it all to lowercase first:

_.toLowerCase.capitalize

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I convert the first character of a column to an uppercase for every row?

From Dev

How can I make sure a string contains at least one uppercase letter, one lowercase letter, one number and one punctuation character?

From Java

How can I convert uppercase letters to lowercase in Notepad++

From Dev

How can I identify uppercase and lowercase characters in a string with swift?

From Dev

How can i check if the file extension is uppercase or lowercase?

From Dev

How to determine an alphabetic character that is not uppercase or lowercase

From Dev

How to sort uppercase and lowercase Strings in Scala

From Dev

Check if a character is lowerCase or upperCase

From Dev

Using sed to uppercase the first non-numeric character, leave others as is

From Dev

How select data dividual character uppercase and lowercase in DataTable?

From Dev

How can I convert a csv file to lowercase or uppercase maintaining it's structure using powershell?

From Dev

How can I indent a string when lowercase meets uppercase, like in thisSentence?

From Dev

How can I convert from uppercase to lowercase all directories and sub-directories in Ubuntu 16.04.2?

From Dev

How to lowercase a string except for first character with powershell

From Dev

How I can replace every first character of the string in the column in spark scala?

From Dev

How can I print the address of first character?

From Dev

Lowercase i displays as uppercase i

From Dev

Converting uppercase to lowercase using XSLT 1.0 however first character should remain caps

From Dev

How do I differentiate between uppercase and lowercase characters in a case statement?

From Dev

How do I replace all uppercase letters with a dash and lowercase with regex?

From Dev

How do I lowercase/uppercase strings with a shortcut in the terminal?

From Dev

Split string on uppercase only if next character is lowercase

From Dev

Check if a character (not string) is lowercase, uppercase, alphanumeric?

From Dev

Changing a lowercase character to uppercase in c++

From Dev

How to convert uppercase letter to lowercase?

From Dev

How to make permlink uppercase to lowercase

From Dev

How to determine if character is uppercase, lowercase, digit, or non-alphanumeric without string methods

From Dev

Microsoft word, How to change lowercase to uppercase, and uppercase to bigger uppercase

From Dev

Check if first character of a paragraph is lowercase

Related Related

  1. 1

    How can I convert the first character of a column to an uppercase for every row?

  2. 2

    How can I make sure a string contains at least one uppercase letter, one lowercase letter, one number and one punctuation character?

  3. 3

    How can I convert uppercase letters to lowercase in Notepad++

  4. 4

    How can I identify uppercase and lowercase characters in a string with swift?

  5. 5

    How can i check if the file extension is uppercase or lowercase?

  6. 6

    How to determine an alphabetic character that is not uppercase or lowercase

  7. 7

    How to sort uppercase and lowercase Strings in Scala

  8. 8

    Check if a character is lowerCase or upperCase

  9. 9

    Using sed to uppercase the first non-numeric character, leave others as is

  10. 10

    How select data dividual character uppercase and lowercase in DataTable?

  11. 11

    How can I convert a csv file to lowercase or uppercase maintaining it's structure using powershell?

  12. 12

    How can I indent a string when lowercase meets uppercase, like in thisSentence?

  13. 13

    How can I convert from uppercase to lowercase all directories and sub-directories in Ubuntu 16.04.2?

  14. 14

    How to lowercase a string except for first character with powershell

  15. 15

    How I can replace every first character of the string in the column in spark scala?

  16. 16

    How can I print the address of first character?

  17. 17

    Lowercase i displays as uppercase i

  18. 18

    Converting uppercase to lowercase using XSLT 1.0 however first character should remain caps

  19. 19

    How do I differentiate between uppercase and lowercase characters in a case statement?

  20. 20

    How do I replace all uppercase letters with a dash and lowercase with regex?

  21. 21

    How do I lowercase/uppercase strings with a shortcut in the terminal?

  22. 22

    Split string on uppercase only if next character is lowercase

  23. 23

    Check if a character (not string) is lowercase, uppercase, alphanumeric?

  24. 24

    Changing a lowercase character to uppercase in c++

  25. 25

    How to convert uppercase letter to lowercase?

  26. 26

    How to make permlink uppercase to lowercase

  27. 27

    How to determine if character is uppercase, lowercase, digit, or non-alphanumeric without string methods

  28. 28

    Microsoft word, How to change lowercase to uppercase, and uppercase to bigger uppercase

  29. 29

    Check if first character of a paragraph is lowercase

HotTag

Archive