C#中GUID的使用
时间:2011-01-28 来源:涂墨留香
xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx”,恰恰是多了四个"-",怎样才能去掉这几个字符呢?
本来想使用string中的函数,却偶然在网上发现功能强大的string格式函数。
格式说明:
System.Guid.NewGuid().ToString(format)
格式说明符
返回值的格式
N 32位:
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
如:e92b8e30a6e541f6a6b9188230a23dd2
D 由连字符分隔的32位数字:
xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
如:e92b8e30-a6e5-41f6-a6b9-188230a23dd2
B 括在大括号中、由连字符分隔的32位数字:
{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}
如:{e92b8e30-a6e5-41f6-a6b9-188230a23dd2}
P 括在圆括号中、由连字符分隔的32位数字:
(xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)
如:(e92b8e30-a6e5-41f6-a6b9-188230a23dd2)