কোনও পুরানো প্রশ্নকে পুনরুত্থিত করার জন্য নয় তবে চিত্রিত হয়েছে আমি যদি সেটআপটি আরও কিছুটা জটিল করে থাকি তবে আমি কমপক্ষে কিছুটা সহজ পদ্ধতি ব্যবহার করতে পারি।
সুতরাং আমরা যদি একটি নতুন কাস্টম ফর্ম্যাটর তৈরি করি তবে আমরা string.Format
আমাদের ফোন নম্বরটিকে একটিতে রূপান্তর না করেই এর সরল বিন্যাসটি ব্যবহার করতে পারিlong
সুতরাং প্রথমে কাস্টম বিন্যাস তৈরি করতে দিন:
using System;
using System.Globalization;
using System.Text;
namespace System
{
/// <summary>
/// A formatter that will apply a format to a string of numeric values.
/// </summary>
/// <example>
/// The following example converts a string of numbers and inserts dashes between them.
/// <code>
/// public class Example
/// {
/// public static void Main()
/// {
/// string stringValue = "123456789";
///
/// Console.WriteLine(String.Format(new NumericStringFormatter(),
/// "{0} (formatted: {0:###-##-####})",stringValue));
/// }
/// }
/// // The example displays the following output:
/// // 123456789 (formatted: 123-45-6789)
/// </code>
/// </example>
public class NumericStringFormatter : IFormatProvider, ICustomFormatter
{
/// <summary>
/// Converts the value of a specified object to an equivalent string representation using specified format and
/// culture-specific formatting information.
/// </summary>
/// <param name="format">A format string containing formatting specifications.</param>
/// <param name="arg">An object to format.</param>
/// <param name="formatProvider">An object that supplies format information about the current instance.</param>
/// <returns>
/// The string representation of the value of <paramref name="arg" />, formatted as specified by
/// <paramref name="format" /> and <paramref name="formatProvider" />.
/// </returns>
/// <exception cref="System.NotImplementedException"></exception>
public string Format(string format, object arg, IFormatProvider formatProvider)
{
var strArg = arg as string;
// If the arg is not a string then determine if it can be handled by another formatter
if (strArg == null)
{
try
{
return HandleOtherFormats(format, arg);
}
catch (FormatException e)
{
throw new FormatException(string.Format("The format of '{0}' is invalid.", format), e);
}
}
// If the format is not set then determine if it can be handled by another formatter
if (string.IsNullOrEmpty(format))
{
try
{
return HandleOtherFormats(format, arg);
}
catch (FormatException e)
{
throw new FormatException(string.Format("The format of '{0}' is invalid.", format), e);
}
}
var sb = new StringBuilder();
var i = 0;
foreach (var c in format)
{
if (c == '#')
{
if (i < strArg.Length)
{
sb.Append(strArg[i]);
}
i++;
}
else
{
sb.Append(c);
}
}
return sb.ToString();
}
/// <summary>
/// Returns an object that provides formatting services for the specified type.
/// </summary>
/// <param name="formatType">An object that specifies the type of format object to return.</param>
/// <returns>
/// An instance of the object specified by <paramref name="formatType" />, if the
/// <see cref="T:System.IFormatProvider" /> implementation can supply that type of object; otherwise, null.
/// </returns>
public object GetFormat(Type formatType)
{
// Determine whether custom formatting object is requested.
return formatType == typeof(ICustomFormatter) ? this : null;
}
private string HandleOtherFormats(string format, object arg)
{
if (arg is IFormattable)
return ((IFormattable)arg).ToString(format, CultureInfo.CurrentCulture);
else if (arg != null)
return arg.ToString();
else
return string.Empty;
}
}
}
সুতরাং আপনি যদি এটি ব্যবহার করতে চান তবে আপনি এটি কিছু করতে হবে:
String.Format(new NumericStringFormatter(),"{0:###-###-####}", i["MyPhone"].ToString());
অন্যান্য কিছু বিষয় যা ভাবতে হবে:
এখনই যদি আপনি ফর্ম্যাট করার জন্য স্ট্রিংয়ের চেয়ে দীর্ঘতর ফর্ম্যাটর নির্দিষ্ট করে থাকেন তবে এটি অতিরিক্ত # চিহ্নগুলি উপেক্ষা করবে। উদাহরণস্বরূপ String.Format(new NumericStringFormatter(),"{0:###-###-####}", "12345");
এটির ফলাফল 123-45- এর ফলে আপনি এটি নির্মাণে কোনও ধরণের সম্ভাব্য ফিলার চরিত্রটি গ্রহণ করতে চাইতে পারেন।
এছাড়াও আমি একটি # চিহ্ন থেকে বাঁচার কোনও উপায় সরবরাহ করি নি তাই আপনি যদি নিজের আউটপুট স্ট্রিংয়ে এটি অন্তর্ভুক্ত করতে চান তবে আপনি এখনই ঠিক সেইভাবে সক্ষম হতে পারবেন না।
আমি রেজেক্সের চেয়ে এই পদ্ধতির পছন্দ করার কারণটি আমার প্রায়শই ব্যবহারকারীদের নিজেরাই ফর্ম্যাটটি নির্দিষ্ট করার অনুমতি দেওয়ার প্রয়োজন হয় এবং কোনও ব্যবহারকারী রেজেক্স শেখানোর চেষ্টা করার চেয়ে এই ফর্ম্যাটটি কীভাবে ব্যবহার করতে হয় তা ব্যাখ্যা করা আমার পক্ষে যথেষ্ট সহজ।
এছাড়াও বর্গের নামটি কিছুটা ভুল ধারণাযুক্ত, যেহেতু এটি যতক্ষণ না আপনি একে একই ক্রমে রাখতে চান এবং কেবল এর ভিতরে অক্ষরগুলি ইনজেক্ট করতে চান ততক্ষণ কোনও স্ট্রিংকে ফর্ম্যাট করতে কাজ করে।