1

情報が見つからなかったかなり一般的な機能について質問しています。プログラムのユーザーがプログラムの変数を使用してカスタム文字列を作成できるようにしたい。

例:

私はリストを持っています:

ID   Name     Description       Value      Status
0    name 0   beschreibung 0    Wert 0     Status 0
1    name 1   beschreibung 1    Wert 1     Status 1
2    name 2   beschreibung 2    Wert 2     Status 2
3    name 3   beschreibung 3    Wert 3     Status 3
4    name 4   beschreibung 4    Wert 4     Status 4
5    name 5   beschreibung 5    Wert 5     Status 5
6    name 6   beschreibung 6    Wert 6     Status 6
7    name 7   beschreibung 7    Wert 7     Status 7
8    name 8   beschreibung 8    Wert 8     Status 8
9    name 9   beschreibung 9    Wert 9     Status 9

これで、ユーザーは次のようなカスタム文字列を定義できるようになります。

IDが{ID}のアイテムの名前は{Name}です。説明は{説明}です。値{値}とステータス{ステータス}があります。

これらの文字列のカスタム解析ルーチンを作成することもできますが、そのタスクの標準的な解決策を見つけたいと思っています。助言がありますか?

4

5 に答える 5

3

C#(および一般的には.NET)での文字列フォーマットの標準的な解決策は、String.Formatメソッドを使用することです。したがって、たとえば次のことができます。

string reult = string.Format("The Name of the Item with the Id {0} is {1}. It's Description is {2}. It has the Value {3} and the Status {4}.",
       id, name, description, value, status);
于 2013-03-13T08:44:55.250 に答える
2

オブジェクトのリストの値{ID}などのプレースホルダーを置き換えたいと思います。{Name}次のようなパターンで正規表現を使用できます

\{(?<key>[A-Za-z]+)\}

これにより、のすべてのインスタンスが検索され、リストから値を取得するために{something}を抽出できるようになります。something

Regex.Match入力文字列とデリゲートを受け取るオーバーロードを使用するMatchEvaluatorと、適切な値を取得できます。

var myObject = new Dictionary<string,string>(){
    {"ID","1"},  
    {"Name","Bob Jones"},
    {"Description","A very nice man"},
    {"Value","1000"},
    {"Status","New"},
};
var regex = new Regex(@"\{(?<key>[A-Za-z]+)\}");
var input = "The Name of the Item with the Id {ID} is {Name}. It's Description is {Description}. It has the Value {Value} and the Status {Status}.";
string result = regex.Replace(input, m => myObject[m.Groups["key"].Value]);

Console.WriteLine(result);

実例: http: //rextester.com/FLGTQW95860

DataRowこの例のディクショナリは、正規表現の使用法を示すためだけのものです。カスタムオブジェクト、またはプロパティの他のコンテナである可能性がある理由はありません。

もちろん、このソリューションにはエラー処理(プロパティが存在しないプレースホルダーなど)は含まれていません。ユーザーが文字列を指定できるようにする場合は、これを含める必要があると思います。

于 2013-03-13T08:47:24.617 に答える
1

あなたはただ意味しますか:

var x = String.Format("The Name of the Item with the Id {0} is {1}. It's Description is {2}. It has the Value {3} and the Status {4}.",object.Id, object.Name, object.Description, object.Value, object.Status); 

それとも私は要点を逃しましたか?

于 2013-03-13T08:45:28.817 に答える
0

独自のクラスを定義して、ToStringをオーバーライドできます。

public class Program
{
    static void Main(string[] args)
    {
        var aString = new MyString() {Description = "desc", Id = 1, Name = "Ja", Status = "st", Value = "Val"};

        var myStrings = new List<MyString>() {aString};


        foreach (MyString myString in myStrings)
        {
            //The Name of the Item with the Id 1 is Ja. It's Description is desc. It has the Value val and the Status st.
            var outputStringVal = myString.ToString();
            //
        }
    }
}

public class MyString 
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string Description { get; set; }
    public string Value { get; set; }
    public string Status { get; set; }

    public override string ToString()
    {
        return String.Format("The Name of the Item with the Id {0} is {1}. It's Description is {2}. It has the Value {3} and the Status {4}.", this.Id, Name, Description, Value, Status);
    }
}
于 2013-03-13T08:59:07.313 に答える
0

ユーザーが文字列で指定された「変数」を使用できるようにすることができます。例えば:

var userstring = "The Name of the Item with the Id {ID} is {Name}. It's Description is {Description}. It has the Value {Value} and the Status {Status}.";
var result = userstring.Replace("{ID}", Id).Replace("{Name}", Name).Replace("{Description}", Description).Replace("{Value}", Value).Replace("{Status}", Status);
于 2013-03-13T09:01:45.283 に答える