C#での名前付き文字列のフォーマット


156

C#の位置ではなく名前で文字列をフォーマットする方法はありますか?

Pythonでは、私はこの例のようなことをすることができます(ここから恥知らずに盗まれます):

>>> print '%(language)s has %(#)03d quote types.' % \
      {'language': "Python", "#": 2}
Python has 002 quote types.

これをC#で行う方法はありますか?たとえば、次のように言います。

String.Format("{some_variable}: {some_other_variable}", ...);

変数名を使用してこれを実行できると便利ですが、辞書も使用できます。


Rubyにもこれがありません。
JesperE 2008年

あなたの例はあまりに単純すぎて、役に立たない答えを与えるように人々を導いていると思います。文字列で変数を2回以上使用すると、よりわかりやすくなります。
ウェッジ(

実際、特別な混乱はString.Formatの使用です。これは、変数指向ではないため役に立ちませんが、String.Formatに関する限り正確な私のような答えに役立ちます。
ジョンルディ

1
String.Formatの呼び出しは明らかに不自然な例です。もちろん、あなたは楕円でString.Formatを呼び出すことが不可能であることを知らなかった。問題は、フォーマットされた位置ではなく、名前付きパラメーターによってフォーマットが発生することを望んでいないということでした。
Jason Baker、

参考:MS Connectのユーザーボイスに提出して、これをフレームワークの標準機能にすることを要求します。興味がある人々のために、してくださいupvote:visualstudio.uservoice.com/forums/121579-visual-studio/...
JohnLBevan

回答:


130

これを処理するための組み込みメソッドはありません。

ここに一つの方法があります

string myString = "{foo} is {bar} and {yadi} is {yada}".Inject(o);

これは別のものです

Status.Text = "{UserName} last logged in at {LastLoginDate}".FormatWith(user);

Phil Haackによる、上記の2つに部分的に基づいた3番目の改善された方法


11
私はFormatWith()を使用して非常に満足していますが、最近遭遇した問題を指摘したいと思いました。実装は、SQL CLRではサポートされていないSystem.Web.UIのDataBinderに依存しています。Inject(o)はデータバインダーに依存しないため、SQL CLRオブジェクトのマルチトークン置換に役立ちます。
EBarr

1
多分あなたはあなたの答えの最初の文を更新することができます。文字列補間は、C#とVBで数か月間存在します(ついに...)。答えは一番上にあるので、更新された.NETリソースにリンクできれば、読者にとって役立つかもしれません。
miroxlav 2015

1
@miroxlavそれは本当に同じではありません。補間された文字列を渡すことはできません:stackoverflow.com/q/31987232/213725
DixonD

@DixonD –あなたは間違いなく正しいですが、それは彼らの目的ではありませんでした。あなたがリンクしたQ&Aでは、OPはまだ存在する前に変数名を参照しようとします。あまり良い考えではありませんが、誰かがそれを主張すれば、専門のパーサーを構築できます。しかし、これを一般的な文字列補間の概念で混乱させることはしません。
miroxlav

44

ここにブログに投稿した実装があります:http : //haacked.com/archive/2009/01/04/fun-with-named-formats-string-parsing-and-edge-cases.aspx

これらの他の実装がブレースエスケープで持ついくつかの問題に対処します。投稿には詳細があります。DataBinder.Evalの処理も行いますが、それでも非常に高速です。


3
その記事404でダウンロードできるコード。私も是非見たいです。
クエンティンスタリン

2
@qes:更新されたリンクがコメントに投稿されました:code.haacked.com/util/NamedStringFormatSolution.zip
Der Hochstapler

3
@OliverSalzburg:しばらくの間、すべてのフォーマットのニーズにSmartFormatを使用してきました。github.com/scottrippey/SmartFormat
quentin-

@qes:それについて書いて答えて、それがどのように機能するかを示してもらえますか?おもしろそうに見える
Der Hochstapler

@qes:SmartFormatは非常に素晴らしく、積極的にサポートされているため(2015)、間違いなく回答としてSmartFormatを追加する必要があります。
–RăzvanFlavius Panda 2015

42

補間された文字列がC#6.0およびVisual Basic 14に追加されました

どちらもVisual Studio 2015の新しいRoslynコンパイラーを通じて導入されました。

  • C#6.0:

    return "\{someVariable} and also \{someOtherVariable}" または
    return $"{someVariable} and also {someOtherVariable}"

  • VB 14:

    return $"{someVariable} and also {someOtherVariable}"

注目すべき機能(Visual Studio 2015 IDEの場合):

  • 構文の色分けがサポートされています-文字列に含まれる変数が強調表示されます
  • リファクタリングがサポートされています-名前を変更すると、文字列に含まれる変数も名前が変更されます
  • 実際には変数名だけでなく、もサポートされています。たとえば、機能するだけ{index}でなく、{(index + 1).ToString().Trim()}

楽しい!(&VSで[笑顔を送信]をクリックします)


2
質問には.net 3.5のタグが付けられているため、情報は有効ですが、代替手段ではありません
ダグラスガンディーニ

1
@miroxlav-フレームワークのバージョンについてあなたは正しい。文字列の補間はちょうどVS 2015で使用される新しいロザリンコンパイラに依存
ダグラス・ガンディーニ

2
これも、フォーマット文字列がコード自体に配置されない限り機能しません。つまり、フォーマット文字列が設定ファイルやデータベースなどの外部ソースからのものである場合は機能しません。
クレイグブレット

40

次のような匿名型を使用することもできます。

    public string Format(string input, object p)
    {
        foreach (PropertyDescriptor prop in TypeDescriptor.GetProperties(p))
            input = input.Replace("{" + prop.Name + "}", (prop.GetValue(p) ?? "(null)").ToString());

        return input;
    }

もちろん、フォーマットを解析したい場合は、より多くのコードが必要になりますが、次のようにこの関数を使用して文字列をフォーマットできます。

Format("test {first} and {another}", new { first = "something", another = "something else" })

1
まだ2.0を使用しているユーザーには最適です。ええ、私は知っています...この解決策は簡単で理解しやすいものです。そしてそれはうまくいきます!!!
ブラッドブルース

14

箱から出してこれを行う方法はないようです。ただし、for値にIFormatProviderリンクする独自のものを実装することは現実的IDictionaryです。

var Stuff = new Dictionary<string, object> {
   { "language", "Python" },
   { "#", 2 }
};
var Formatter = new DictionaryFormatProvider();

// Interpret {0:x} where {0}=IDictionary and "x" is hash key
Console.WriteLine string.Format(Formatter, "{0:language} has {0:#} quote types", Stuff);

出力:

Pythonには2つの見積もりタイプがあります

注意点は、を混在させることができないFormatProvidersため、派手なテキストの書式設定を同時に使用できないことです。


1
概説の+ 1、IMHO、最高の概念的な方法。mo.notono.us/ 2008/07 / c - stringinject - format - strings - by - key.htmlに優れた実装があり、他の投稿にもこれが含まれていますが、それらもまたIMHOはかなり邪悪な反射ベースの方法を提案する
アダムラルフ

9

フレームワーク自体はこれを行う方法を提供していませんが、Scott Hanselmanによるこの投稿をご覧ください。使用例:

Person p = new Person();  
string foo = p.ToString("{Money:C} {LastName}, {ScottName} {BirthDate}");  
Assert.AreEqual("$3.43 Hanselman, {ScottName} 1/22/1974 12:00:00 AM", foo); 

James Newton-Kingによるこのコードは類似しており、サブプロパティとインデックスで機能します。

string foo = "Top result for {Name} was {Results[0].Name}".FormatWith(student));

Jamesのコードは文字列を解析するためにSystem.Web.UI.DataBinderに依存しており、System.Webを参照する必要がありますが、Web以外のアプリケーションではそうしたくない人もいます。

編集:ああ、それらは匿名型でうまく機能しますが、準備が整ったプロパティを持つオブジェクトがない場合:

string name = ...;
DateTime date = ...;
string foo = "{Name} - {Birthday}".FormatWith(new { Name = name, Birthday = date });


4

あなたが得る最も近いものはインデックス付きフォーマットだと思います:

String.Format("{0} has {1} quote types.", "C#", "1");

String.Replace()もあります。複数のステップでそれを実行し、文字列の他のどこにも「変数」が見つからないという信念を持ってそれを実行したい場合は、次のようにします。

string MyString = "{language} has {n} quote types.";
MyString = MyString.Replace("{language}", "C#").Replace("{n}", "1");

これを拡張してリストを使用する:

List<KeyValuePair<string, string>> replacements = GetFormatDictionary();  
foreach (KeyValuePair<string, string> item in replacements)
{
    MyString = MyString.Replace(item.Key, item.Value);
}

.Keysコレクションを反復処理することで、Dictionary <string、string>でもそれを行うことができますが、List <KeyValuePair <string、string >>を使用することで、Listの.ForEach()メソッドを利用してそれを圧縮し、ワンライナー:

replacements.ForEach(delegate(KeyValuePair<string,string>) item) { MyString = MyString.Replace(item.Key, item.Value);});

ラムダの方がさらに単純ですが、私はまだ.Net 2.0を使用しています。また、.Netの文字列は不変であるため、繰り返し使用しても.Replace()のパフォーマンスはそれほど高くありません。また、これはMyStringデリゲートにアクセスできるように変数を定義する必要があるため、まだ完全ではありません。


まあ、それは最もきれいな解決策ではありませんが、私が今取り掛かっているのはそれです。私が違ったことをした唯一のことは、文字列の代わりにStringBuilderを使用して、新しい文字列を作成し続けないようにすることでした。
Jason Baker、

3

私のオープンソースライブラリであるRegextraは、(特に)名前付き書式をサポートしています。現在.NET 4.0以降をターゲットにしており、NuGetで利用できます。私はそれについての紹介ブログ投稿も持っていますRegextra:あなたの(問題)を減らすのを助けます{2}

名前付きフォーマットビットは以下をサポートします。

  • 基本的なフォーマット
  • ネストされたプロパティのフォーマット
  • 辞書のフォーマット
  • 区切り文字のエスケープ
  • 標準/カスタム/ IFormatProvider文字列フォーマット

例:

var order = new
{
    Description = "Widget",
    OrderDate = DateTime.Now,
    Details = new
    {
        UnitPrice = 1500
    }
};

string template = "We just shipped your order of '{Description}', placed on {OrderDate:d}. Your {{credit}} card will be billed {Details.UnitPrice:C}.";

string result = Template.Format(template, order);
// or use the extension: template.FormatTemplate(order);

結果:

2014年2月28日に発行された「ウィジェット」のご注文を発送しました。{credit}カードの請求額は$ 1,500.00です。

その他の例については、プロジェクトのGitHubリンク(上記)およびwikiを確認してください。


うわー、これは驚くほどに見えます。特に、遭遇するより難しいフォーマットの例のいくつかを扱う場合はそうです。
ニコラスピーターセン

2

これをチェックしてください:

public static string StringFormat(string format, object source)
{
    var matches = Regex.Matches(format, @"\{(.+?)\}");
    List<string> keys = (from Match matche in matches select matche.Groups[1].Value).ToList();

    return keys.Aggregate(
        format,
        (current, key) =>
        {
            int colonIndex = key.IndexOf(':');
            return current.Replace(
                "{" + key + "}",
                colonIndex > 0
                    ? DataBinder.Eval(source, key.Substring(0, colonIndex), "{0:" + key.Substring(colonIndex + 1) + "}")
                    : DataBinder.Eval(source, key).ToString());
        });
}

サンプル:

string format = "{foo} is a {bar} is a {baz} is a {qux:#.#} is a really big {fizzle}";
var o = new { foo = 123, bar = true, baz = "this is a test", qux = 123.45, fizzle = DateTime.Now };
Console.WriteLine(StringFormat(format, o));

他のソリューションと比較してパフォーマンスはかなり良いです。


1

これが可能かどうかは疑問です。最初に頭に浮かぶのは、どのようにしてローカル変数名にアクセスするかです。

ただし、これを行うためにLINQおよびLambda式を使用する賢い方法があるかもしれません。


@leppie:+1して、LINQ + Lambdaを実行してください; D(関連する回答がある場合は+1します)
user7116

私も見たいです!たぶん私はその挑戦をします!
レッピー、2008年

変数名を使用することは不可能だと考えましたが、私が間違っていた場合に備えて、そこに入れました。:)辞書でこれを行う方法もありませんか?
Jason Baker、

試してみて、どこかで少し手に入れましたが、醜くて使いにくいと思いました。次のようになります。string s = format(f => f( "{hello} {world}"、hello、world));
レッピー08年

1

これは私がしばらく前に作ったものです。これは、単一の引数を取るFormatメソッドでStringを拡張します。いいことは、intのような単純な引数を提供する場合は標準のstring.Formatを使用することですが、匿名型のようなものを使用する場合も機能します。

使用例:

"The {Name} family has {Children} children".Format(new { Children = 4, Name = "Smith" })

「スミス家には4人の子供がいます」という結果になります。

配列やインデクサーのようなクレイジーなバインディングは行いません。しかし、それは超シンプルで高性能です。

    public static class AdvancedFormatString
{

    /// <summary>
    /// An advanced version of string.Format.  If you pass a primitive object (string, int, etc), it acts like the regular string.Format.  If you pass an anonmymous type, you can name the paramters by property name.
    /// </summary>
    /// <param name="formatString"></param>
    /// <param name="arg"></param>
    /// <returns></returns>
    /// <example>
    /// "The {Name} family has {Children} children".Format(new { Children = 4, Name = "Smith" })
    /// 
    /// results in 
    /// "This Smith family has 4 children
    /// </example>
    public static string Format(this string formatString, object arg, IFormatProvider format = null)
    {
        if (arg == null)
            return formatString;

        var type = arg.GetType();
        if (Type.GetTypeCode(type) != TypeCode.Object || type.IsPrimitive)
            return string.Format(format, formatString, arg);

        var properties = TypeDescriptor.GetProperties(arg);
        return formatString.Format((property) =>
            {
                var value = properties[property].GetValue(arg);
                return Convert.ToString(value, format);
            });
    }


    public static string Format(this string formatString, Func<string, string> formatFragmentHandler)
    {
        if (string.IsNullOrEmpty(formatString))
            return formatString;
        Fragment[] fragments = GetParsedFragments(formatString);
        if (fragments == null || fragments.Length == 0)
            return formatString;

        return string.Join(string.Empty, fragments.Select(fragment =>
            {
                if (fragment.Type == FragmentType.Literal)
                    return fragment.Value;
                else
                    return formatFragmentHandler(fragment.Value);
            }).ToArray());
    }


    private static Fragment[] GetParsedFragments(string formatString)
    {
        Fragment[] fragments;
        if ( parsedStrings.TryGetValue(formatString, out fragments) )
        {
            return fragments;
        }
        lock (parsedStringsLock)
        {
            if ( !parsedStrings.TryGetValue(formatString, out fragments) )
            {
                fragments = Parse(formatString);
                parsedStrings.Add(formatString, fragments);
            }
        }
        return fragments;
    }

    private static Object parsedStringsLock = new Object();
    private static Dictionary<string,Fragment[]> parsedStrings = new Dictionary<string,Fragment[]>(StringComparer.Ordinal);

    const char OpeningDelimiter = '{';
    const char ClosingDelimiter = '}';

    /// <summary>
    /// Parses the given format string into a list of fragments.
    /// </summary>
    /// <param name="format"></param>
    /// <returns></returns>
    static Fragment[] Parse(string format)
    {
        int lastCharIndex = format.Length - 1;
        int currFragEndIndex;
        Fragment currFrag = ParseFragment(format, 0, out currFragEndIndex);

        if (currFragEndIndex == lastCharIndex)
        {
            return new Fragment[] { currFrag };
        }

        List<Fragment> fragments = new List<Fragment>();
        while (true)
        {
            fragments.Add(currFrag);
            if (currFragEndIndex == lastCharIndex)
            {
                break;
            }
            currFrag = ParseFragment(format, currFragEndIndex + 1, out currFragEndIndex);
        }
        return fragments.ToArray();

    }

    /// <summary>
    /// Finds the next delimiter from the starting index.
    /// </summary>
    static Fragment ParseFragment(string format, int startIndex, out int fragmentEndIndex)
    {
        bool foundEscapedDelimiter = false;
        FragmentType type = FragmentType.Literal;

        int numChars = format.Length;
        for (int i = startIndex; i < numChars; i++)
        {
            char currChar = format[i];
            bool isOpenBrace = currChar == OpeningDelimiter;
            bool isCloseBrace = isOpenBrace ? false : currChar == ClosingDelimiter;

            if (!isOpenBrace && !isCloseBrace)
            {
                continue;
            }
            else if (i < (numChars - 1) && format[i + 1] == currChar)
            {//{{ or }}
                i++;
                foundEscapedDelimiter = true;
            }
            else if (isOpenBrace)
            {
                if (i == startIndex)
                {
                    type = FragmentType.FormatItem;
                }
                else
                {

                    if (type == FragmentType.FormatItem)
                        throw new FormatException("Two consequtive unescaped { format item openers were found.  Either close the first or escape any literals with another {.");

                    //curr character is the opening of a new format item.  so we close this literal out
                    string literal = format.Substring(startIndex, i - startIndex);
                    if (foundEscapedDelimiter)
                        literal = ReplaceEscapes(literal);

                    fragmentEndIndex = i - 1;
                    return new Fragment(FragmentType.Literal, literal);
                }
            }
            else
            {//close bracket
                if (i == startIndex || type == FragmentType.Literal)
                    throw new FormatException("A } closing brace existed without an opening { brace.");

                string formatItem = format.Substring(startIndex + 1, i - startIndex - 1);
                if (foundEscapedDelimiter)
                    formatItem = ReplaceEscapes(formatItem);//a format item with a { or } in its name is crazy but it could be done
                fragmentEndIndex = i;
                return new Fragment(FragmentType.FormatItem, formatItem);
            }
        }

        if (type == FragmentType.FormatItem)
            throw new FormatException("A format item was opened with { but was never closed.");

        fragmentEndIndex = numChars - 1;
        string literalValue = format.Substring(startIndex);
        if (foundEscapedDelimiter)
            literalValue = ReplaceEscapes(literalValue);

        return new Fragment(FragmentType.Literal, literalValue);

    }

    /// <summary>
    /// Replaces escaped brackets, turning '{{' and '}}' into '{' and '}', respectively.
    /// </summary>
    /// <param name="value"></param>
    /// <returns></returns>
    static string ReplaceEscapes(string value)
    {
        return value.Replace("{{", "{").Replace("}}", "}");
    }

    private enum FragmentType
    {
        Literal,
        FormatItem
    }

    private class Fragment
    {

        public Fragment(FragmentType type, string value)
        {
            Type = type;
            Value = value;
        }

        public FragmentType Type
        {
            get;
            private set;
        }

        /// <summary>
        /// The literal value, or the name of the fragment, depending on fragment type.
        /// </summary>
        public string Value
        {
            get;
            private set;
        }


    }

}

1
private static Regex s_NamedFormatRegex = new Regex(@"\{(?!\{)(?<key>[\w]+)(:(?<fmt>(\{\{|\}\}|[^\{\}])*)?)?\}", RegexOptions.Compiled);

public static StringBuilder AppendNamedFormat(this StringBuilder builder,IFormatProvider provider, string format, IDictionary<string, object> args)
{
    if (builder == null) throw new ArgumentNullException("builder");
    var str = s_NamedFormatRegex.Replace(format, (mt) => {
        string key = mt.Groups["key"].Value;
        string fmt = mt.Groups["fmt"].Value;
        object value = null;
        if (args.TryGetValue(key,out value)) {
            return string.Format(provider, "{0:" + fmt + "}", value);
        } else {
            return mt.Value;
        }
    });
    builder.Append(str);
    return builder;
}

public static StringBuilder AppendNamedFormat(this StringBuilder builder, string format, IDictionary<string, object> args)
{
    if (builder == null) throw new ArgumentNullException("builder");
    return builder.AppendNamedFormat(null, format, args);
}

例:

var builder = new StringBuilder();
builder.AppendNamedFormat(
@"你好,{Name},今天是{Date:yyyy/MM/dd}, 这是你第{LoginTimes}次登录,积分{Score:{{ 0.00 }}}",
new Dictionary<string, object>() { 
    { "Name", "wayjet" },
    { "LoginTimes",18 },
    { "Score", 100.4 },
    { "Date",DateTime.Now }
});

出力:你好、wayjet、今天是2011-05-04、これは你第18次登录、积分{100.40}


1

これは、任意のオブジェクトの単純なメソッドです。

    using System.Text.RegularExpressions;
    using System.ComponentModel;

    public static string StringWithFormat(string format, object args)
    {
        Regex r = new Regex(@"\{([A-Za-z0-9_]+)\}");

        MatchCollection m = r.Matches(format);

        var properties = TypeDescriptor.GetProperties(args);

        foreach (Match item in m)
        {
            try
            {
                string propertyName = item.Groups[1].Value;
                format = format.Replace(item.Value, properties[propertyName].GetValue(args).ToString());
            }
            catch
            {
                throw new FormatException("The format string is not valid");
            }
        }

        return format;
    }

そして、ここでそれを使用する方法:

 DateTime date = DateTime.Now;
 string dateString = StringWithFormat("{Month}/{Day}/{Year}", date);

出力:2/27/2012


0

これを実装したのは、String.Formatの機能を複製する単純なクラスです(クラスを使用する場合を除く)。辞書またはタイプを使用してフィールドを定義できます。

https://github.com/SergueiFedorov/NamedFormatString

C#6.0はこの機能を言語仕様に直接追加してNamedFormatStringいるため、下位互換性のために追加されています。


0

これを既存のソリューションとは少し異なる方法で解決しました。これは、名前付きアイテム置換のコアを行います(一部が行ったリフレクションビットではありません)。それは非常に速くてシンプルです...これが私の解決策です:

/// <summary>
/// Formats a string with named format items given a template dictionary of the items values to use.
/// </summary>
public class StringTemplateFormatter
{
    private readonly IFormatProvider _formatProvider;

    /// <summary>
    /// Constructs the formatter with the specified <see cref="IFormatProvider"/>.
    /// This is defaulted to <see cref="CultureInfo.CurrentCulture">CultureInfo.CurrentCulture</see> if none is provided.
    /// </summary>
    /// <param name="formatProvider"></param>
    public StringTemplateFormatter(IFormatProvider formatProvider = null)
    {
        _formatProvider = formatProvider ?? CultureInfo.CurrentCulture;
    }

    /// <summary>
    /// Formats a string with named format items given a template dictionary of the items values to use.
    /// </summary>
    /// <param name="text">The text template</param>
    /// <param name="templateValues">The named values to use as replacements in the formatted string.</param>
    /// <returns>The resultant text string with the template values replaced.</returns>
    public string FormatTemplate(string text, Dictionary<string, object> templateValues)
    {
        var formattableString = text;
        var values = new List<object>();
        foreach (KeyValuePair<string, object> value in templateValues)
        {
            var index = values.Count;
            formattableString = ReplaceFormattableItem(formattableString, value.Key, index);
            values.Add(value.Value);
        }
        return String.Format(_formatProvider, formattableString, values.ToArray());
    }

    /// <summary>
    /// Convert named string template item to numbered string template item that can be accepted by <see cref="string.Format(string,object[])">String.Format</see>
    /// </summary>
    /// <param name="formattableString">The string containing the named format item</param>
    /// <param name="itemName">The name of the format item</param>
    /// <param name="index">The index to use for the item value</param>
    /// <returns>The formattable string with the named item substituted with the numbered format item.</returns>
    private static string ReplaceFormattableItem(string formattableString, string itemName, int index)
    {
        return formattableString
            .Replace("{" + itemName + "}", "{" + index + "}")
            .Replace("{" + itemName + ",", "{" + index + ",")
            .Replace("{" + itemName + ":", "{" + index + ":");
    }
}

次のように使用されます。

    [Test]
    public void FormatTemplate_GivenANamedGuid_FormattedWithB_ShouldFormatCorrectly()
    {
        // Arrange
        var template = "My guid {MyGuid:B} is awesome!";
        var templateValues = new Dictionary<string, object> { { "MyGuid", new Guid("{A4D2A7F1-421C-4A1D-9CB2-9C2E70B05E19}") } };
        var sut = new StringTemplateFormatter();
        // Act
        var result = sut.FormatTemplate(template, templateValues);
        //Assert
        Assert.That(result, Is.EqualTo("My guid {a4d2a7f1-421c-4a1d-9cb2-9c2e70b05e19} is awesome!"));
    }

誰かがこれが便利だと思ってください!


0

受け入れられた答えはいくつかの良い例を示していますが、.InjectといくつかのHaackの例はエスケープを処理しません。また、多くは.NET Coreや他の一部の環境では利用できないRegex(遅い)、またはDataBinder.Evalに大きく依存しています。

そのことを念頭に置いて、文字をストリームし、文字ごとにStringBuilder出力に書き込む、単純なステートマシンベースのパーサーを作成しました。これは、として実装されるString拡張メソッド(複数可)との両方Aを取ることができるDictionary<string, object>か、object(リフレクションを使用して)入力としてパラメータを持ちます。

入力に不均衡な括弧やその他のエラーが含まれている場合に{{{escaping}}}、無制限のレベルを処理してスローFormatExceptionします。

public static class StringExtension {
    /// <summary>
    /// Extension method that replaces keys in a string with the values of matching object properties.
    /// </summary>
    /// <param name="formatString">The format string, containing keys like {foo} and {foo:SomeFormat}.</param>
    /// <param name="injectionObject">The object whose properties should be injected in the string</param>
    /// <returns>A version of the formatString string with keys replaced by (formatted) key values.</returns>
    public static string FormatWith(this string formatString, object injectionObject) {
        return formatString.FormatWith(GetPropertiesDictionary(injectionObject));
    }

    /// <summary>
    /// Extension method that replaces keys in a string with the values of matching dictionary entries.
    /// </summary>
    /// <param name="formatString">The format string, containing keys like {foo} and {foo:SomeFormat}.</param>
    /// <param name="dictionary">An <see cref="IDictionary"/> with keys and values to inject into the string</param>
    /// <returns>A version of the formatString string with dictionary keys replaced by (formatted) key values.</returns>
    public static string FormatWith(this string formatString, IDictionary<string, object> dictionary) {
        char openBraceChar = '{';
        char closeBraceChar = '}';

        return FormatWith(formatString, dictionary, openBraceChar, closeBraceChar);
    }
        /// <summary>
        /// Extension method that replaces keys in a string with the values of matching dictionary entries.
        /// </summary>
        /// <param name="formatString">The format string, containing keys like {foo} and {foo:SomeFormat}.</param>
        /// <param name="dictionary">An <see cref="IDictionary"/> with keys and values to inject into the string</param>
        /// <returns>A version of the formatString string with dictionary keys replaced by (formatted) key values.</returns>
    public static string FormatWith(this string formatString, IDictionary<string, object> dictionary, char openBraceChar, char closeBraceChar) {
        string result = formatString;
        if (dictionary == null || formatString == null)
            return result;

        // start the state machine!

        // ballpark output string as two times the length of the input string for performance (avoids reallocating the buffer as often).
        StringBuilder outputString = new StringBuilder(formatString.Length * 2);
        StringBuilder currentKey = new StringBuilder();

        bool insideBraces = false;

        int index = 0;
        while (index < formatString.Length) {
            if (!insideBraces) {
                // currently not inside a pair of braces in the format string
                if (formatString[index] == openBraceChar) {
                    // check if the brace is escaped
                    if (index < formatString.Length - 1 && formatString[index + 1] == openBraceChar) {
                        // add a brace to the output string
                        outputString.Append(openBraceChar);
                        // skip over braces
                        index += 2;
                        continue;
                    }
                    else {
                        // not an escaped brace, set state to inside brace
                        insideBraces = true;
                        index++;
                        continue;
                    }
                }
                else if (formatString[index] == closeBraceChar) {
                    // handle case where closing brace is encountered outside braces
                    if (index < formatString.Length - 1 && formatString[index + 1] == closeBraceChar) {
                        // this is an escaped closing brace, this is okay
                        // add a closing brace to the output string
                        outputString.Append(closeBraceChar);
                        // skip over braces
                        index += 2;
                        continue;
                    }
                    else {
                        // this is an unescaped closing brace outside of braces.
                        // throw a format exception
                        throw new FormatException($"Unmatched closing brace at position {index}");
                    }
                }
                else {
                    // the character has no special meaning, add it to the output string
                    outputString.Append(formatString[index]);
                    // move onto next character
                    index++;
                    continue;
                }
            }
            else {
                // currently inside a pair of braces in the format string
                // found an opening brace
                if (formatString[index] == openBraceChar) {
                    // check if the brace is escaped
                    if (index < formatString.Length - 1 && formatString[index + 1] == openBraceChar) {
                        // there are escaped braces within the key
                        // this is illegal, throw a format exception
                        throw new FormatException($"Illegal escaped opening braces within a parameter - index: {index}");
                    }
                    else {
                        // not an escaped brace, we have an unexpected opening brace within a pair of braces
                        throw new FormatException($"Unexpected opening brace inside a parameter - index: {index}");
                    }
                }
                else if (formatString[index] == closeBraceChar) {
                    // handle case where closing brace is encountered inside braces
                    // don't attempt to check for escaped braces here - always assume the first brace closes the braces
                    // since we cannot have escaped braces within parameters.

                    // set the state to be outside of any braces
                    insideBraces = false;

                    // jump over brace
                    index++;

                    // at this stage, a key is stored in current key that represents the text between the two braces
                    // do a lookup on this key
                    string key = currentKey.ToString();
                    // clear the stringbuilder for the key
                    currentKey.Clear();

                    object outObject;

                    if (!dictionary.TryGetValue(key, out outObject)) {
                        // the key was not found as a possible replacement, throw exception
                        throw new FormatException($"The parameter \"{key}\" was not present in the lookup dictionary");
                    }

                    // we now have the replacement value, add the value to the output string
                    outputString.Append(outObject);

                    // jump to next state
                    continue;
                } // if }
                else {
                    // character has no special meaning, add it to the current key
                    currentKey.Append(formatString[index]);
                    // move onto next character
                    index++;
                    continue;
                } // else
            } // if inside brace
        } // while

        // after the loop, if all braces were balanced, we should be outside all braces
        // if we're not, the input string was misformatted.
        if (insideBraces) {
            throw new FormatException("The format string ended before the parameter was closed.");
        }

        return outputString.ToString();
    }

    /// <summary>
    /// Creates a Dictionary from an objects properties, with the Key being the property's
    /// name and the Value being the properties value (of type object)
    /// </summary>
    /// <param name="properties">An object who's properties will be used</param>
    /// <returns>A <see cref="Dictionary"/> of property values </returns>
    private static Dictionary<string, object> GetPropertiesDictionary(object properties) {
        Dictionary<string, object> values = null;
        if (properties != null) {
            values = new Dictionary<string, object>();
            PropertyDescriptorCollection props = TypeDescriptor.GetProperties(properties);
            foreach (PropertyDescriptor prop in props) {
                values.Add(prop.Name, prop.GetValue(properties));
            }
        }
        return values;
    }
}

結局のところ、すべてのロジックは10の主要な状態に要約されます。状態マシンがブラケットの外側にあり、同様にブラケットの内側にある場合、次の文字は、開き括弧、エスケープ開き括弧、閉じ括弧、エスケープ閉じ括弧のいずれかです。または通常の文字。これらの各条件は、ループの進行に応じて個別に処理され、出力StringBufferまたはキーに文字が追加されますStringBuffer。パラメータが閉じられると、キーの値をStringBuffer使用してディクショナリでパラメータの値が検索され、出力にプッシュされますStringBuffer。最後に、出力の値StringBufferが返されます。


-6
string language = "Python";
int numquotes = 2;
string output = language + " has "+ numquotes + " language types.";

編集:私が言うべきだったのは、「いいえ、あなたがやりたいことはC#でサポートされているとは思わない。これは、あなたがこれから手に入れようとしていることだ」です。


1
私は反対票に興味があります。誰かが理由を教えてくれませんか?
ケビン

1
そのため、string.formatはこの操作を4 / TenThousandths of second秒速く実行します。この関数がtonと呼ばれる場合、その違いに気付くでしょう。しかし、それは、彼がすでにしたくないと言ったのと同じようにそれをするように彼に言うだけでなく、少なくとも彼の質問に答えます。
ケビン、

4
私はあなたに反対票を投じませんでしたが、これは主に実装しませんでした。なぜなら、多くの文字列連結を醜くしているからです。しかし、それは私の個人的な見解です。
Jason Baker、

これがあまりにも多くの票を投じたことは奇妙です。答えを拡張することを検討してください。連結が頻繁に呼び出されない場合は、"someString" + someVariable + "someOtherString"もっと読みやすいと考えることができます。この記事はあなたに同意します。
Steven Jeuris
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.