博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
生成包含数字和大小写字母的随机码
阅读量:6049 次
发布时间:2019-06-20

本文共 2045 字,大约阅读时间需要 6 分钟。

下面给出两种随机生成6为随机码的代码事例:

第一:

1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5  6 namespace CreateRandom 7 { 8     class Program 9     {10         static void Main(string[] args)11         {12             //定义一个包含数字,大小写字母的字符串13             string strAll = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";14             //定义一个结果15             string result = "";16             //实例化Random对象17             Random random = new Random();18             //使用for循环得到6为字符19             for (int i = 0; i < 6; i++)20             {21                 //返回一个小于62的int类型的随机数22                 int rd = random.Next(62);23                 //随机从指定的位置开始获取一个字符24                 string oneChar = strAll.Substring(rd, 1);25                 //循环加到6为26                 result += oneChar;27             }28             Console.WriteLine(result);29             Console.ReadKey();30         }31     }32 }

 第二:

1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5  6 namespace 随机6位数 7 { 8     class Program 9     {10         static void Main(string[] args)11         {12             Random rand = new Random();13             StringBuilder sb = new StringBuilder();14             for (int i = 0; i < 6; i++) 15             {16                 //得到一个数字17                 int n = rand.Next(62);18 19                 if (n < 10)20                 {21                     sb.Append(n);22                 }23                 //得到一个大写字母24                 else if (n < 36)25                 {26                     sb.Append((char)(n + 'A' - 10));27                 }28                 //得到一个小写字母29                 else30                 {31                     sb.Append(Convert.ToChar(n + 'a' - 36));32                 }33             } 34             string result = sb.ToString();35             Console.WriteLine(result);36             Console.ReadKey();37         }38     }39 }

以上两种方法大同小异,可依据自己的理解自行运用……

转载于:https://www.cnblogs.com/jeffqing/archive/2012/07/28/2612570.html

你可能感兴趣的文章
无穷之旅:关于无穷大的文化史 (伊莱·马奥尔 著)
查看>>
Weekly 1
查看>>
gdb 调试工具
查看>>
[ NOI 2002 ] 贪吃的九头龙
查看>>
vue中上传文件相同文件名没反应
查看>>
WCF学习笔记之基础知识梳理(1)
查看>>
Programming Ability Test学习 1008. 数组元素循环右移问题 (20)
查看>>
bzoj千题计划273:bzoj4710: [Jsoi2011]分特产
查看>>
操作文件的File类
查看>>
Java基础关于Map(字典)的方法使用
查看>>
通过tarball形式安装HBASE Cluster(CDH5.0.2)——集群安装总览
查看>>
mysql安装出错cannot create windows service for mysql.error:0
查看>>
容器(集合)
查看>>
windows 无法分析或处理 pass 报错问题汇总
查看>>
hibernate(五) hibernate一对一关系映射详解
查看>>
An HTTP & HTTP/2 client for Android and Java applications OkHttp
查看>>
sqlserver字符串合并(merge)方法汇总
查看>>
Ansible3:ansible.cfg配置说明【转】
查看>>
关于项目中下单流程HTML设计的一些思考
查看>>
Cent OS 常用配置命令
查看>>