Unity工具类之生成文本验证码
更新时间:2020年01月01日 09:00:51 作者:人生如逆旅,我亦是行人
这篇文章主要为大家详细介绍了Unity工具类之生成文本验证码,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了Unity生成文本验证码的具体代码,供大家参考,具体内容如下
文本验证码
由于我经常使用Unity进行webgl版本的开发,看到网站上面用户登录有很多的验证码验证。借鉴相关博客,写了Unity的工具类文本验证码,代码如下:
工具类:VerificationCode
using System.Collections; using System.Collections.Generic; using System.Text; /// <summary> /// 该工具类为:生成验证码 /// 作者:hys /// 时间:2019.12.30 /// 邮箱:840917807@qq.com /// </summary> public class VerificationCode { private static char[] constant = { '0','1','2','3','4','5','6','7','8','9', 'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z', 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z' }; /// <summary> /// 获取随机生成的验证码 /// </summary> /// <param name="Length">长度</param> /// <returns></returns> public static string SetDeleKey(int Length) { StringBuilder newRandom = new StringBuilder(62); System.Random rd = new System.Random(); for (int i = 0; i < Length; i++) { newRandom.Append(constant[rd.Next(62)]); //rd.Next(62)返回小于62的非负随机数,Append将Length次随机的码进行拼接 } return newRandom.ToString(); } }
Unity脚本
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class HuangVerificationCodeTextScripts : MonoBehaviour { private Text verificationCodeText; //验证码Text. private void Awake() { init(); } void Start() { } void Update() { } /// <summary> /// 进行初始化 /// </summary> private void init() { verificationCodeText = GameObject.Find("VerificationCodeText").GetComponent<Text>(); } /// <summary> /// 生成验证码 /// </summary> /// <param name="length">验证码长度</param> /// <returns>字符串类型的验证码</returns> public string generateVerificationCode(int length) { string code= VerificationCode.SetDeleKey(length); verificationCodeText.text = code; return code; } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
相关文章
C#中GraphicsPath的AddString方法用法实例
这篇文章主要介绍了C#中GraphicsPath的AddString方法用法,实例分析了AddString方法添加字符串的相关使用技巧,需要的朋友可以参考下2015-06-06
最新评论