-
Notifications
You must be signed in to change notification settings - Fork 85
/
App.cs
65 lines (55 loc) · 1.62 KB
/
App.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Text.RegularExpressions;
namespace ExportBlog
{
public class App
{
public static string BaseDirectory = AppDomain.CurrentDomain.BaseDirectory;
public static int ToInt(string s)
{
int i = 0;
int.TryParse(s, out i);
return i;
}
public static string ToHtmlDecoded(string s)
{
return System.Web.HttpUtility.HtmlDecode(s);
}
public static string GetDescription(Enum cur)
{
var fi = cur.GetType().GetField(cur.ToString());
var da = (DescriptionAttribute)Attribute.GetCustomAttribute(fi, typeof(DescriptionAttribute));
return da != null ? da.Description : cur.ToString();
}
static Regex reg_unicode = new Regex(@"\\u[a-f0-9]{4}", RegexOptions.IgnoreCase | RegexOptions.Compiled);
public static string UtoGB(string str)
{
Match mat = reg_unicode.Match(str);
while (mat.Success)
{
char c = Convert.ToChar(Convert.ToInt32(mat.Value.Substring(2), 16));
str = str.Replace(mat.Value, c.ToString());
mat = reg_unicode.Match(str);
}
return str;
}
}
public enum Type
{
Blog = 1,
Url = 2,
Column = 4,
}
[Flags]
public enum Format
{
CHM = 1,
PDF = 2,
HTML = 4,
TXT = 8,
EPUB = 16,
}
}