时间处理模式
Posted 世界之大,程序一家
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间处理模式相关的知识,希望对你有一定的参考价值。
//设置不同的参数进行处理
string g = "cabg"; string g2 = "ag"; string text8 = string.Concat(new string[] { this.qqwabb(g), "-", this.qqwabb(g2), "-", this.qqwabb(g2), " ", this.qqwabb(g2), ":" }); string g3 = "aa"; text8 = text8 + this.qqwabb(g3) + ":" + this.qqwabb(g3);
private string qqwabb(string g000) { string text = ""; string result; if (string.IsNullOrEmpty(g000)) { result = text; } else { char[] array = new char[] { ‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘g‘, ‘h‘, ‘i‘, ‘j‘ }; char[] array2 = g000.ToCharArray(); int num = array.Length; char[] array3 = array2; for (int i = 0; i < array3.Length; i++) { char c = array3[i]; for (int j = 0; j < num; j++) { if (c.Equals(array[j])) { text += j.ToString(); } } } result = text; } return result; }
以上是关于时间处理模式的主要内容,如果未能解决你的问题,请参考以下文章