次のような文字列があります。
string stuff = " this is something you could use one day";
次の関数を使用して、余分な空白を削除しています。
private string removeThem(string str) {
if (str!= null){
return Regex.Replace(str, @"\s+", " ");
}else{
return "";
}
}
その関数を適用すると、次のようになります。
" this is something you could use one day"
でも私はしたい:
"this is something you could use one day"
どうやってするの?