Formatação de seqüência de caracteres nomeada em C #

156

Existe alguma maneira de formatar uma seqüência de caracteres por nome, em vez de posição em C #?

Em python, eu posso fazer algo parecido com este exemplo (descaradamente roubado daqui ):

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

Existe alguma maneira de fazer isso em c #? Digamos, por exemplo:

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

Ser capaz de fazer isso usando um nome de variável seria bom, mas um dicionário também é aceitável.

Jason Baker
fonte
Também estou sentindo falta disso no Ruby.
JesperE
Eu acho que seu exemplo é muito simplista e está levando as pessoas a dar respostas inúteis. Talvez o uso de uma variável mais de uma vez na string seja mais demonstrativo.
Wedge
Na verdade, a confusão ESPECÍFICA é o uso de String.Format. Isso se presta a respostas como a minha, que não são úteis porque não são orientadas a variáveis, mas são precisas no que diz respeito a String.Format.
John Rudy
1
A chamada para String.Format é obviamente um exemplo artificial. A menos, é claro, que você não sabia que não é possível chamar String.Format com elipses. O problema era que eu não queria que a formatação acontecesse por parâmetros nomeados, e não por posição, que foi corrigida.
Jason Baker
FYI: Enviado à voz do usuário do MS Connect para solicitar que isso seja um recurso padrão da estrutura. Para qualquer pessoa interessada, por favor, vote acima
JohnLBevan

Respostas:

130

Não existe um método interno para lidar com isso.

Aqui está um método

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

Aqui está outro

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

Um terceiro método aprimorado, parcialmente baseado nos dois acima , de Phil Haack

John Sheehan
fonte
11
Fiquei muito feliz usando FormatWith (), mas queria apontar um problema que me deparei recentemente. A implementação depende do DataBinder do System.Web.UI, que não é suportado no SQL CLR. Injetar (o) não depende do fichário de dados, o que o tornou útil para substituir vários tokens no meu objeto SQL CLR.
EBarr
1
Talvez você possa atualizar a primeira frase da sua resposta. A interpolação de cadeias está presente em C # e VB por alguns meses (finalmente ...). Sua resposta está na parte superior, portanto, pode ser útil para os leitores se você puder vinculá-los a alguns recursos .NET atualizados.
24515 miroxlav
1
@miroxlav não é realmente o mesmo. Você não pode transmitir seqüências de caracteres interpoladas: stackoverflow.com/q/31987232/213725
DixonD
@ DixonD - você está definitivamente certo, mas não era o objetivo deles. Nas perguntas e respostas vinculadas, o OP tenta referenciar o nome da variável ainda antes que ela exista. Não é uma ideia muito boa, mas se alguém insistir nisso, ele pode construir um analisador especializado. Mas eu não mexeria nisso com o conceito geral de interpolação de strings.
miroxlav
44

Tenho uma implementação que acabei de publicar no meu blog aqui: http://haacked.com/archive/2009/01/04/fun-with-named-formats-string-parsing-parsing-and-edge-cases.aspx

Ele aborda alguns problemas que essas outras implementações têm com o escape de chaves. A postagem tem detalhes. Ele também faz o DataBinder.Eval, mas ainda é muito rápido.

Haacked
fonte
3
O código disponível para download no artigo 404. Eu realmente gostaria de ver também.
Quentin-starin
2
@qes: Um link atualizado foi postadas nos comentários: code.haacked.com/util/NamedStringFormatSolution.zip
Der Hochstapler
3
@OliverSalzburg: Estou usando o SmartFormat para todas as minhas necessidades de formatação há algum tempo, adorei. github.com/scottrippey/SmartFormat
quentin-starin
@ qes: Você se importaria de escrever e responder sobre isso e mostrar como funciona? Parece interessante
Der Hochstapler
@qes: Você definitivamente deve adicionar o SmartFormat como resposta, pois é muito agradável e com suporte ativo (2015).
Răzvan Flavius ​​Panda
42

Sequências interpoladas foram adicionadas ao C # 6.0 e Visual Basic 14

Ambos foram introduzidos por meio do novo compilador Roslyn no Visual Studio 2015 .

  • C # 6.0:

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

  • VB 14:

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

Recursos dignos de nota (no IDE do Visual Studio 2015):

  • a sintaxe da cor é suportada - as variáveis ​​contidas nas strings são destacadas
  • a refatoração é suportada - ao renomear, as variáveis ​​contidas nas strings também são renomeadas
  • na verdade, não apenas nomes de variáveis, mas expressões são suportadas - por exemplo, não apenas {index}funciona, mas também{(index + 1).ToString().Trim()}

Aproveitar! (e clique em "Enviar um sorriso" no VS)

miroxlav
fonte
2
A questão está marcada com .net 3.5, portanto, suas informações são válidas, mas não são alternativas
Douglas Gandini
1
@miroxlav - Você está certo sobre a versão do framework. A interpolação corda só depende do novo compilador Roslyn usado em VS 2015.
Douglas Gandini
2
Isso também não funcionará, a menos que sua string de formato seja inserida no próprio código. ou seja, não funcionará se a string de formato vier de uma fonte externa, como um arquivo de configuração ou banco de dados.
Craig Brett
40

Você também pode usar tipos anônimos como este:

    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;
    }

É claro que exigiria mais código se você também quiser analisar a formatação, mas pode formatar uma string usando esta função como:

Format("test {first} and {another}", new { first = "something", another = "something else" })
Doggett
fonte
1
Perfeito para aqueles que ainda estão na versão 2.0. Sim, eu sei .... Esta solução é direta e fácil de entender. E FUNCIONA !!!
23712 Brad Brad Brad
14

Não parece haver uma maneira de fazer isso imediatamente. No entanto, parece possível implementar seus próprios IFormatProviderlinks IDictionarypara valores.

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);

Saídas:

Python tem 2 tipos de cotação

A ressalva é que você não pode misturar FormatProviders, portanto, a formatação de texto sofisticada não pode ser usada ao mesmo tempo.

Spoulson
fonte
1
+1 para descrever, IMHO, o melhor método conceitual, que tem uma boa implementação em mo.notono.us/2008/07/c-stringinject-format-strings-by-key.html - os outros posts incluem isso, mas também propor os métodos baseados reflexão que, IMHO, são bastante mal
Adam Ralph
9

A estrutura em si não fornece uma maneira de fazer isso, mas você pode dar uma olhada nesta postagem de Scott Hanselman. Exemplo de uso:

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); 

Esse código de James Newton-King é semelhante e funciona com subpropriedades e índices,

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

O código de James baseia-se no System.Web.UI.DataBinder para analisar a cadeia e requer referência ao System.Web, o que algumas pessoas não gostam de fazer em aplicativos não-web.

EDIT: Ah, e eles funcionam bem com tipos anônimos, se você não tiver um objeto com propriedades prontas para isso:

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

Consulte /programming/271398?page=2#358259

Com a extensão vinculada, você pode escrever o seguinte:

var str = "{foo} {bar} {baz}".Format(foo=>"foo", bar=>2, baz=>new object());

e você receberá "foo 2 System.Object".

Mark Cidade
fonte
4

Eu acho que o mais próximo que você vai chegar é um formato indexado:

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

Há também String.Replace (), se você estiver disposto a fazer isso em várias etapas e acreditar que não encontrará suas 'variáveis' em nenhum outro lugar da string:

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

Expandindo isso para usar uma lista:

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

Você também pode fazer isso com um Dictionary <string, string> iterando suas coleções .Keys, mas usando um List <KeyValuePair <string, string >>, podemos tirar proveito do método .ForEach () da List e condensá-lo novamente em uma linha:

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

Um lambda seria ainda mais simples, mas ainda estou no .Net 2.0. Observe também que o desempenho .Replace () não é estelar quando usado iterativamente, pois as strings no .Net são imutáveis. Além disso, isso requer que a MyStringvariável seja definida de forma que seja acessível ao delegado, para que ainda não seja perfeita.

Joel Coehoorn
fonte
Bem, essa não é a solução mais bonita, mas é com isso que estou indo por enquanto. A única coisa que fiz de maneira diferente foi usar um StringBuilder em vez de um string, para não continuar criando novas strings.
Jason Baker
3

Minha biblioteca de código aberto, Regextra , suporta formatação nomeada (entre outras coisas). Atualmente, ele tem como alvo o .NET 4.0+ e está disponível no NuGet . Também tenho um post introdutório no blog: Regextra: ajudando você a reduzir seus (problemas) {2} .

O bit de formatação nomeado suporta:

  • Formatação básica
  • Formatação de propriedades aninhadas
  • Formatação de dicionário
  • Escapamento de delimitadores
  • Formatação de sequência padrão / personalizada / IFormatProvider

Exemplo:

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);

Resultado:

Acabamos de enviar seu pedido de 'Widget', feito em 28/02/2014. Seu cartão de {crédito} será cobrado R $ 1.500,00.

Confira o link do GitHub do projeto (acima) e o wiki para outros exemplos.

Ahmad Mageed
fonte
Uau, isso parece incrível, especialmente quando se lida com alguns dos exemplos de formato mais difíceis que encontramos.
Nicholas Petersen
2

Verifique este:

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());
        });
}

Amostra:

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));

O desempenho é bastante bom em comparação com outras soluções.

Pavlo Neiman
fonte
1

Duvido que isso seja possível. A primeira coisa que vem à mente é como você terá acesso aos nomes de variáveis ​​locais?

No entanto, pode haver uma maneira inteligente de usar as expressões LINQ e Lambda para fazer isso.

leppie
fonte
@leppie: +1 se você pode me dar alguma LINQ + Lambda de fazer isso; D (ok +1 para ter uma resposta relevante)
user7116
Eu adoraria ver isso também! Talvez eu aceite esse desafio!
Leppie 1/10/08
Imaginei que seria impossível relacionar nomes de variáveis, mas coloque isso lá no caso de eu estar errado. :) Também não há como fazer isso com um dicionário?
Jason Baker
Tentei e cheguei um pouco em algum lugar, mas achei muito feio e difícil de usar. Seria: string s = formato (f => f ("{olá} {mundo}", olá, mundo));
leppie
1

Aqui está um que eu fiz um tempo atrás. Ele estende String com um método Format usando um único argumento. O bom é que ele usará a string padrão. Formato se você fornecer um argumento simples como um int, mas se você usar algo como um tipo anônimo, também funcionará.

Exemplo de uso:

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

Resultaria em "A família Smith tem 4 filhos".

Não faz coisas malucas de ligação, como matrizes e indexadores. Mas é super simples e de alto desempenho.

    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;
        }


    }

}
Steve Potter
fonte
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);
}

Exemplo:

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 }
});

Saída: way, wayjet, -04 04/05/2011, 第 是 你 第 18 积分 登录 , {100.40}

wayjet
fonte
1

Aqui está um método simples para qualquer objeto:

    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;
    }

E aqui como usá-lo:

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

saída: 27/2/2012

Ashkan Ghodrat
fonte
0

Eu implementei que esta é uma classe simples que duplica a funcionalidade de String.Format (exceto ao usar classes). Você pode usar um dicionário ou um tipo para definir campos.

https://github.com/SergueiFedorov/NamedFormatString

O C # 6.0 está adicionando essa funcionalidade diretamente nas especificações de idioma, assim NamedFormatStringcomo para compatibilidade com versões anteriores.

Serguei Fedorov
fonte
0

Resolvi isso de uma maneira um pouco diferente das soluções existentes. Ele faz o núcleo da substituição do item nomeado (não o bit de reflexão que alguns fizeram). É extremamente rápido e simples ... Esta é a minha solução:

/// <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 + ":");
    }
}

É usado da seguinte maneira:

    [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!"));
    }

Espero que alguém ache isso útil!

Mark Whitfeld
fonte
0

Embora a resposta aceita dê alguns bons exemplos, os exemplos .Inject e alguns dos Haack não tratam de escapar. Muitos também dependem muito do Regex (mais lento) ou do DataBinder.Eval, que não está disponível no .NET Core e em alguns outros ambientes.

Com isso em mente, escrevi um analisador simples baseado em máquina de estado que transmite caracteres, gravando em uma StringBuildersaída, caractere por caractere. É implementado como Stringmétodo (s) de extensão e pode levar a Dictionary<string, object>ou objectcom parâmetros como entrada (usando reflexão).

Ele lida com níveis ilimitados {{{escaping}}}e lança FormatExceptionquando a entrada contém chaves desequilibradas e / ou outros erros.

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;
    }
}

Por fim, toda a lógica se resume a 10 estados principais - pois quando a máquina de estado está fora de um suporte e da mesma forma dentro de um suporte, o próximo caractere é uma chave aberta, uma chave aberta com escape, uma chave fechada, uma chave fechada, uma chave fechada com escape, ou um personagem comum. Cada uma dessas condições é tratada individualmente à medida que o loop progride, adicionando caracteres a uma saída StringBufferou chave StringBuffer. Quando um parâmetro é fechado, o valor da chave StringBufferé usado para procurar o valor do parâmetro no dicionário, que é empurrado para a saída StringBuffer. No final, o valor da saída StringBufferé retornado.

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

Edit: O que eu deveria ter dito era: "Não, não acredito que o que você queira fazer seja suportado pelo C #. É o mais próximo que você conseguirá".

Kevin
fonte
1
Estou curioso sobre os votos negativos. Alguém quer me dizer por quê?
Kevin
1
Portanto, o string.format executaria essa operação 4/10 / milésimos de segundo mais rápido Se essa função for chamada de tonelada, você poderá notar essa diferença. Mas, pelo menos, responde a sua pergunta, em vez de apenas dizer a ele para fazer da mesma maneira que ele já disse que não queria.
Kevin
4
Não votei em contrário, mas não implementaria isso principalmente porque, bem, acho feio fazer muitas concatenações de strings. Mas essa é a minha visão pessoal.
Jason Baker
Estranho que isso tenha sido votado tanto. Considere expandir sua resposta, para que, quando a concatenação não for chamada com frequência, você possa considerar "someString" + someVariable + "someOtherString"mais legível. Este artigo concorda com você.
Steven Jeuris