C # में नामित स्ट्रिंग स्वरूपण


156

क्या सी # में स्थिति के बजाय नाम से स्ट्रिंग को प्रारूपित करने का कोई तरीका है?

अजगर में, मैं इस उदाहरण की तरह कुछ कर सकता हूँ (बेशर्मी से यहाँ से चोरी ):

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

क्या C # में ऐसा करने का कोई तरीका है? उदाहरण के लिए कहें:

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

एक चर नाम का उपयोग करने में सक्षम होने के नाते यह अच्छा होगा, लेकिन एक शब्दकोश भी स्वीकार्य है।


मुझे रूबी से भी यह याद आ रही है।
जेसपेरे

मुझे लगता है कि आपका उदाहरण बहुत सरल है और आपको जवाब देने के लिए लोगों को प्रेरित कर रहा है। हो सकता है कि स्ट्रिंग में एक से अधिक बार एक चर का उपयोग करना अधिक प्रदर्शनकारी हो।
वेज

दरअसल, स्पेसिफिक कन्फ्यूजन String.Format का उपयोग है। यह खुद को मेरे जैसे जवाबों के लिए उधार देता है, जो सहायक नहीं हैं क्योंकि वे चर उन्मुख नहीं हैं, लेकिन स्ट्रिंग के रूप में सटीक इंफ़ार हैं। जैसा कि चिंतित है।
जॉन रूडी

1
String.Format को फोन जाहिर है एक उदाहरण है। जब तक आप निश्चित रूप से नहीं जानते थे कि स्ट्रिंग को कॉल करना। ईलिप्स के साथ पोर्ट्रेट संभव नहीं है। समस्या यह थी कि मैंने यह नहीं रखा था कि मैं स्थिति के बजाय नामित मापदंडों द्वारा होने वाली प्रारूपण करना चाहता था, जिसे फीक्स किया गया है।
जेसन बेकर

FYI करें: MS Connect की यूजर वॉयस को यह अनुरोध करने के लिए प्रस्तुत किया गया कि इसे फ्रेमवर्क की एक मानक विशेषता बनाया जाए। किसी को भी रुचि के लिए, कृपया वोट दें: 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);

फिल हैक से ऊपर एक आंशिक रूप से दोनों के आधार पर तीसरा सुधार हुआ


11
मैं FormatWith () का उपयोग करके बहुत खुश हूं, लेकिन मैं हाल ही में आए एक मुद्दे को इंगित करना चाहता था। कार्यान्वयन System.Web.UI से DataBinder पर निर्भर करता है, जो SQL CLR में समर्थित नहीं है। Inject (o) डेटा बाइंडर पर निर्भर नहीं करता है, जिसने इसे मेरी SQL CLR ऑब्जेक्ट में मल्टी-टोकन-रिप्लेसमेंट के लिए उपयोगी बना दिया है।
17

1
हो सकता है कि आप अपने उत्तर के पहले वाक्य को अपडेट कर सकते हैं। स्ट्रिंग इंटरपोलेशन कुछ महीनों (अंत में ...) में C # और VB में मौजूद है । आपका जवाब सबसे ऊपर है इसलिए यह पाठकों के लिए उपयोगी हो सकता है यदि आप उन्हें कुछ अद्यतन .NET संसाधनों से जोड़ सकते हैं।
miroxlav

1
@miroxlav वास्तव में ऐसा नहीं है। : आप चारों ओर अंतर्वेशित तार पारित नहीं हो सकता stackoverflow.com/q/31987232/213725
DixonD

@ डिक्सनड - आप निश्चित रूप से सही हैं लेकिन यह उनका उद्देश्य नहीं था। आपके द्वारा लिंक किए गए Q & A में, OP मौजूद होने से पहले चर नाम का संदर्भ देने का प्रयास करता है। बहुत अच्छा विचार नहीं है, लेकिन अगर कोई उस पर जोर देता है, तो वह विशेष पार्सर का निर्माण कर सकता है। लेकिन मैं इसे सामान्य स्ट्रिंग प्रक्षेप अवधारणा के साथ गड़बड़ नहीं करूंगा।
miroxlav

44

मेरे पास एक कार्यान्वयन है जिसे मैंने अभी अपने ब्लॉग पर पोस्ट किया है: http://haacked.com/archive/2009/01/04/fun-with-ame-formats-string-parsing-and-edge-cases.aspx

यह कुछ मुद्दों को संबोधित करता है जो इन अन्य कार्यान्वयनों में ब्रेस भागने से हैं। पोस्ट में विवरण है। यह DataBinder.Eval बात भी करता है, लेकिन अभी भी बहुत तेज है।


3
उस लेख 404 में डाउनलोड के लिए उपलब्ध कोड। मैं वास्तव में इसे देखना चाहूंगा।
क्वेंटिन-स्टारिन

2
@qes: टिप्पणियों में एक अद्यतन लिंक पोस्ट किया गया था: code.haacked.com/util/NamedStringFormatSolution.zip
Der Hochstapler

3
@OliverSalzburg: मैं कुछ समय से अपनी सभी स्वरूपण आवश्यकताओं के लिए स्मार्टफार्म का उपयोग कर रहा हूं, इसे प्यार करें। github.com/scottrippey/SmartFormat
quentin-starin

@qes: क्या आप संभवत: इसके बारे में लिखना और जवाब देना चाहेंगे और यह दिखाना चाहेंगे कि यह कैसे काम करता है? दिलचस्प लग रहा है
Der Hochstapler

@qes: आपको जवाब के रूप में स्मार्टफार्म को निश्चित रूप से जोड़ना चाहिए क्योंकि यह बहुत अच्छा है और सक्रिय रूप से समर्थित है (2015)।
रेज़वान फ्लावियस पांडा

42

इंटरपोलिंग स्ट्रिंग्स को सी # 6.0 और विजुअल बेसिक 14 में जोड़ा गया था

दोनों को विजुअल स्टूडियो 2015 में नए रोसलिन कंपाइलर के माध्यम से पेश किया गया था ।

उल्लेखनीय विशेषताएं (विजुअल स्टूडियो 2015 आईडीई में):

  • वाक्यविन्यास रंग का समर्थन किया जाता है - तारों में निहित चर हाइलाइट किए जाते हैं
  • रीफैक्टरिंग का समर्थन किया जाता है - जब नाम बदल दिया जाता है, तो तारों में निहित चर का भी नाम बदल दिया जाता है
  • वास्तव में न केवल चर नाम, लेकिन अभिव्यक्तियों का समर्थन किया जाता है - जैसे न केवल {index}काम करता है, बल्कि यह भी{(index + 1).ToString().Trim()}

का आनंद लें! (और VS में "सेंड ए स्माइल" पर क्लिक करें)


2
सवाल .net 3.5 इसलिए आपकी जानकारी मान्य है, लेकिन यह एक विकल्प नहीं है के साथ टैग है
डगलस Gandini

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

बॉक्स के बाहर ऐसा करने का कोई तरीका प्रतीत नहीं होता है। हालांकि, यह अपने स्वयं के कार्यान्वयन के लिए संभव है 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);

आउटपुट:

पायथन में 2 उद्धरण प्रकार हैं

चेतावनी यह है कि आप मिश्रण नहीं कर सकते हैं FormatProviders, इसलिए फैंसी टेक्स्ट फ़ॉर्मेटिंग का उपयोग उसी समय नहीं किया जा सकता है।


1
+1, आउटलोइंग के लिए, IMHO, सर्वश्रेष्ठ वैचारिक विधि, जिसमें mo.notono.us/2008/07/c-stringinject-format-strings-by-key.html पर एक अच्छा कार्यान्वयन है - अन्य पदों में यह शामिल है लेकिन वे भी प्रतिबिंब आधारित तरीकों का प्रस्ताव करें, जो IMHO हैं, बल्कि दुष्ट हैं
एडम राल्फ

9

फ़्रेमवर्क स्वयं ऐसा करने का एक तरीका प्रदान नहीं करता है, लेकिन आप स्कॉट हैंसेलमैन द्वारा इस पोस्ट पर एक नज़र डाल सकते हैं । उदाहरण उपयोग:

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

जेम्स न्यूटन-किंग का यह कोड समान है और उप-गुणों और अनुक्रमित के साथ काम करता है,

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

जेम्स का कोड स्ट्रिंग को पार्स करने के लिए System.Web.UI.ata.DataBinder पर निर्भर करता है और System.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);
}

आप एक शब्दकोश के साथ ऐसा कर सकते हैं <string, string> too it.Keys संग्रह को पुन: प्रसारित करके, लेकिन एक सूची <KeyValuePair <string, string >> का उपयोग करके हम सूची के .ForEach () विधि का लाभ उठा सकते हैं और इसे वापस कर सकते हैं। एक लाइनर:

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

एक लैम्ब्डा और भी सरल होगा, लेकिन मैं अभी भी .net 2.0 पर हूं। यह भी ध्यान दें कि .Replace () प्रदर्शन जब तार का उपयोग नहीं किया जाता है, जब से .net में तार अपरिवर्तनीय होते हैं। इसके अलावा, इसके लिए MyStringचर को इस तरह परिभाषित किया जाना चाहिए कि यह प्रतिनिधि के लिए सुलभ हो, इसलिए यह अभी तक सही नहीं है।


खैर, यह सबसे सुंदर समाधान नहीं है, लेकिन यह वही है जो मैं अभी के लिए जा रहा हूं। केवल एक चीज जो मैंने अलग-अलग की थी, वह स्ट्रिंग के बजाय स्ट्रिंग स्ट्रिंग का उपयोग करती थी ताकि मैं नए तार न बनाऊं।
जेसन बेकर

3

मेरा खुला स्रोत पुस्तकालय, रेग्गेस्ट्रा , नामित स्वरूपण (अन्य चीजों के बीच) का समर्थन करता है। यह वर्तमान में .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);

परिणाम:

हमने 2/28/2014 को रखी गई 'विजेट' के आपके आदेश को भेज दिया। आपके {क्रेडिट} कार्ड का बिल $ 1,500.00 होगा।

परियोजना के GitHub लिंक (ऊपर) और अन्य उदाहरणों के लिए विकी देखें।


वाह, यह आश्चर्यजनक लग रहा है, खासकर जब कुछ अधिक कठिन प्रारूप उदाहरणों में से कुछ के साथ काम करते हैं।
निकोलस पीटरसन

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 और लेम्ब्डा एक्सप्रेशन का उपयोग करके कुछ चतुर तरीका हो सकता है।


@leppie: +1 यदि आप मुझे ऐसा करने के लिए कुछ LINQ + लेम्बडा दे सकते हैं; D (एक प्रासंगिक उत्तर देने के लिए ओ 1)
user7116

मुझे भी इसे देखना अच्छा लगेगा! शायद मैं वह चुनौती लूँगा!
लीपी

मुझे लगा कि परिवर्तनीय नामों के साथ ऐसा करना असंभव होगा, लेकिन मुझे गलत होने की स्थिति में डाल दिया। :) किसी भी शब्दकोश के साथ ऐसा करने का कोई तरीका नहीं है?
जेसन बेकर

मैंने कोशिश की, और कुछ हद तक मिल गया, लेकिन मैंने इसे बहुत बदसूरत और उपयोग करना मुश्किल समझा। यह ऐसा दिखता है: स्ट्रिंग एस = प्रारूप (एफ => एफ ("{हैलो} {दुनिया}", हैलो, दुनिया));
लीपी

1

यहाँ एक है जिसे मैंने कुछ समय पहले बनाया था। यह स्ट्रिंग को एक एकल तर्क लेते हुए एक प्रारूप विधि के साथ विस्तारित करता है। अच्छी बात यह है कि यह मानक स्ट्रिंग का उपयोग करेगा। यदि आप इंट की तरह एक सरल तर्क प्रदान करते हैं, लेकिन यदि आप कुछ गुमनाम प्रकार का उपयोग करते हैं तो यह भी काम करेगा।

उदाहरण उपयोग:

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

आउटपुट: way, wayjet, way -04 2011-05-04, 是 你 way 次 18 次 way way 登录 {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

मैंने इसे लागू किया एक साधारण वर्ग है जो स्ट्रिंग की कार्यक्षमता को डुप्लिकेट करता है। पोर्ट्रेट (कक्षाओं का उपयोग करते समय छोड़कर)। आप खेतों को परिभाषित करने के लिए एक शब्दकोश या एक प्रकार का उपयोग कर सकते हैं।

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

भले ही स्वीकृत उत्तर कुछ अच्छे उदाहरण देता है, लेकिन इनजेक्ट के साथ-साथ हैक के कुछ उदाहरण बचने से नहीं बचते हैं। कई लोग Regex (धीमे), या DataBinder.Eval पर भी बहुत भरोसा करते हैं जो .NET कोर और कुछ अन्य वातावरणों में उपलब्ध नहीं है।

इसे ध्यान में रखते हुए, मैंने एक साधारण स्टेट मशीन आधारित पार्सर लिखा है जो पात्रों के माध्यम से प्रवाहित होता है, एक StringBuilderआउटपुट पर लिखता है , चरित्र द्वारा चरित्र। इसे Stringविस्तार विधि (एस) के रूप में लागू किया जाता है और इनपुट के रूप में 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 करेगा, अगर इस फ़ंक्शन को एक टन कहा जाता है तो आप उस अंतर को देख सकते हैं। लेकिन यह कम से कम उसके सवाल का जवाब देने के बजाय सिर्फ उसे ऐसा करने के लिए कह रहा है, जैसा उसने पहले ही कहा था कि वह ऐसा नहीं करना चाहता था।
केविन

4
मैंने आपको वोट नहीं दिया, लेकिन मैं इसे मुख्य रूप से लागू नहीं करूंगा क्योंकि अच्छी तरह से, मुझे बहुत सारे स्ट्रिंग कॉन्सेप्टेशन बदसूरत लगते हैं। लेकिन यह मेरा निजी विचार है।
जेसन बेकर

अजीब है कि यह नीचे इतना वोट मिला। अपने उत्तर के विस्तार पर विचार करें, कि जब संघटन को अक्सर नहीं बुलाया जाता है तो आप "someString" + someVariable + "someOtherString"अधिक पठनीय पर विचार कर सकते हैं । यह लेख आपसे सहमत है।
स्टीवन ज्यूरिस
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.