Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Name Normalizer | Text Formatting & Manual Parsing
Practice
Projects
Quizzes & Challenges
Quizzes
Challenges
/
C# Strings & Text Processing

bookChallenge: Name Normalizer

Task

Swipe to start coding

Write a function that takes a string containing a person's name with inconsistent spacing and casing, and returns the name in a standardized format. The standardized format should have each word capitalized (first letter uppercase, remaining letters lowercase), with single spaces between words and no leading or trailing spaces.

  • Remove any leading and trailing spaces from the input string.
  • Convert the entire string to lowercase.
  • Split the string into words, removing any extra spaces between words.
  • Capitalize the first letter of each word and leave the remaining letters in lowercase.
  • Join the words back together with a single space between each word.

Solution

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 2. ChapterΒ 7
single

single

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

Suggested prompts:

Can you explain this in simpler terms?

What are the main points I should remember?

Can you give me an example?

close

bookChallenge: Name Normalizer

Swipe to show menu

Task

Swipe to start coding

Write a function that takes a string containing a person's name with inconsistent spacing and casing, and returns the name in a standardized format. The standardized format should have each word capitalized (first letter uppercase, remaining letters lowercase), with single spaces between words and no leading or trailing spaces.

  • Remove any leading and trailing spaces from the input string.
  • Convert the entire string to lowercase.
  • Split the string into words, removing any extra spaces between words.
  • Capitalize the first letter of each word and leave the remaining letters in lowercase.
  • Join the words back together with a single space between each word.

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 2. ChapterΒ 7
single

single

some-alt