web-dev-qa-db-ja.com

文字列の各文字を見てください

誰かが各文字の文字列を調べて、各文字を新しい文字列に追加する方法を知っているのだろうか?本当に本当に基本的な例です。ToUpperおよびToLower検証などを追加できます。

25
user1290653
string foo = "hello world", bar = string.Empty;

foreach(char c in foo){
    bar += c;
}

StringBuilderを使用:

string foo = "hello world";
StringBuilder bar = new StringBuilder();

foreach (char c in foo)
{
    bar.Append(c);
}

以下は、Stringclassの署名です。

[SerializableAttribute]
[ComVisibleAttribute(true)]
public sealed class String : IComparable, 
    ICloneable, IConvertible, IComparable<string>, IEnumerable<char>, 
    IEnumerable, IEquatable<string>

http://msdn.Microsoft.com/en-us/library/system.string(v = vs.100).aspx

60
xandercoded
var output = ""; // or use StringBuilder
foreach(char c in text)
{
     output += c; // if or do with c what you need
}

...必要なものですか?
stringはIEnumerable<char>

4
NSGaga