We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d7bb6f commit d5a89d1Copy full SHA for d5a89d1
ConvertEquations/ConvertEquations/Common.cs
@@ -15,7 +15,19 @@ class Common
15
{
16
//过滤HTML中img标签中的src
17
public static string HTML_IMG = @"<img\b[^<>]*?\bsrc[\s\t\r\n]*=[\s\t\r\n]*[""']?[\s\t\r\n]*(?<imgUrl>[^\s\t\r\n""'<>]*)[^<>]*?/?[\s\t\r\n]*>";
18
+ }
19
20
+ /// <summary>
21
+ /// 系统状态码
22
+ /// </summary>
23
+ sealed class ResultCode
24
+ {
25
+ public static string SUCCESS = "转换成功";
26
+ public static string WORD_ERROR = "Word错误";
27
+ public static string WORD_SAVE_ERROR = "Word存储错误";
28
+ public static string EXCEL_ERROR = "Excel错误";
29
+ public static string EXCEL_READ_ERROR = "Excel读取错误";
30
+ public static string FILE_PATH_ERROR = "文件位置错误";
31
}
32
33
0 commit comments