2006年4月28日
摘要: 将输入字符串的http://www.sina.com.cn的样式换成 URL:Regex.Replace(strContent, @"(http:\/\/([\w.]+\/?)\S*)", "${1}"); EXCEL中将单元格设置为文本:Range.NumberFormatLocal = "@"(... 阅读全文
posted @ 2006-04-28 18:30 mecn 阅读(658) 评论(1) 推荐(0)
摘要: int to stringint i = 123;string s = i.ToString();string s = (String)i;string s = Convert.ToString(i);string to int string s = "123";int a = Convert.To... 阅读全文
posted @ 2006-04-28 16:56 mecn 阅读(517) 评论(0) 推荐(0)