mirror of https://github.com/leiurayer/downkyi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
717 B
32 lines
717 B
using System.Collections.Generic;
|
|
|
|
namespace DownKyi.Core.FileName
|
|
{
|
|
/// <summary>
|
|
/// 文件名字段
|
|
/// </summary>
|
|
public static class HyphenSeparated
|
|
{
|
|
// 文件名的分隔符
|
|
public static Dictionary<int, string> Hyphen = new Dictionary<int, string>()
|
|
{
|
|
{ 100, "/" },
|
|
{ 101, "_" },
|
|
{ 102, "-" },
|
|
{ 103, "+" },
|
|
{ 104, "," },
|
|
{ 105, "." },
|
|
{ 106, "&" },
|
|
{ 107, "#" },
|
|
{ 108, "(" },
|
|
{ 109, ")" },
|
|
{ 110, "[" },
|
|
{ 111, "]" },
|
|
{ 112, "{" },
|
|
{ 113, "}" },
|
|
{ 114, " " },
|
|
};
|
|
|
|
}
|
|
}
|