Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Name Normalizer | Text Formatting and Manual Parsing
C# Strings and Text Processing
セクション 2.  7
single

single

bookChallenge: Name Normalizer

メニューを表示するにはスワイプしてください

タスク

スワイプしてコーディングを開始

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.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 2.  7
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt