subtitleMemorize.UtilsInputFiles.EscapeSequencesToNormalChar C# (CSharp) Method

EscapeSequencesToNormalChar() private static method

private static EscapeSequencesToNormalChar ( String str ) : String
str String
return String
		private static String EscapeSequencesToNormalChar(String str) {
			if (str == null)
				return null;
			return str.Replace(@"\\", @"\").Replace(@"\,", @",").Replace(@"\<", @"<").Replace(@"\>", @">").Replace(@"\=", @"=");
		}