gpt4 book ai didi

c# - 在 C# 中的运行时插入特殊字符(\t、\n、\r 等)

转载 作者:行者123 更新时间:2023-11-30 14:42:59 26 4
gpt4 key购买 nike

C# 编译器插入特殊字 rune 字,例如\t 代表制表符,\n 代表换行符等。但是是否有内置的 C# 或 .Net 函数可以在运行时插入它们?

例如,在运行时我读取了一个文本分隔文件格式的配置,可能是这样的:

Delimiter: \t
LineEnding: \r\n

现在我唯一能想到的就是读取字符串,然后使用编译器插入的字符串执行 Replace():

Delimiter = Delimiter.Replace(@"\n", "\n").Replace(@"\r", "\r");

最佳答案

您可以尝试Regex.Unescape,它可能满足您的所有要求。

foreach (var special in new string[] { @"\n", @"\t", @"\r\n" })
{
Console.WriteLine("|{0}|", special);
Console.WriteLine("|{0}|", Regex.Unescape(special));
Console.WriteLine("----------------------");
}

来自 MSDN:

It replaces the representation of unprintable characters with the characters themselves. For example, it replaces \a with \x07. The character representations it replaces are \a, \b, \e, \n, \r, \f, \t, and \v.

关于c# - 在 C# 中的运行时插入特殊字符(\t、\n、\r 等),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2516950/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com