AT.MIN.Tools.ReplaceMetaChars C# (CSharp) Method

ReplaceMetaChars() public static method

Replaces the string representations of meta chars with their corresponding character values.
public static ReplaceMetaChars ( string input ) : string
input string The input.
return string
		public static string ReplaceMetaChars( string input )
		{
			return Regex.Replace( input, @"(\\)(\d{3}|[^\d])?", new MatchEvaluator( ReplaceMetaCharsMatch ) );
		}
		private static string ReplaceMetaCharsMatch( Match m )