古い質問を復活させるのではなく、少々複雑な設定の場合は、少なくとも少し使いやすい方法を提供できると考えました。
そのため、新しいカスタムフォーマッタを作成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-になるので、コンストラクターである種の可能なフィラー文字を取得することができます。
また、私は#記号をエスケープする方法を提供しなかったので、出力文字列に#記号を含めたい場合、現在の方法を使用できません。
正規表現よりもこの方法を好む理由は、ユーザーが自分で形式を指定できるようにする必要があることが多く、ユーザーの正規表現を教えるよりも、この形式の使用方法を説明する方がはるかに簡単だからです。
また、クラス名は、文字列を同じ順序で保持し、その中に文字を挿入するだけであれば、実際には任意の文字列をフォーマットするために機能するので、少し間違っています。