- 博客(3)
- 收藏
- 关注
原创 如何快速分隔字体串
可以使用正则:public static IEnumerable<string> StrSplit(this string Str, int num = 2) => Regex.Matches(Str, $"\\w{{{num}}}").Cast<Match>().Select(s => s.Value);
2021-10-13 14:13:50
25
原创 10进制和26进制互转
static double 二十六to十(string s) { char[] c = s.ToCharArray(); int c_len = c.Length; double cont = 0; for (int x = 0; x < c.Length; x++)
2013-05-12 13:04:47
791
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人