生成隨機字串

2021-06-08 14:19:07 字數 1271 閱讀 6628

原文出處:

估摸著以後極有可能使用到,於是寫了乙個生成隨機字串的函式。可以自定義生成規則,生成字串長度。模仿了ms的函式風格,生成規則使用巨集的或且規則,返回值使用了布林型。這裡使用布林返回可能作用不大。直接貼**吧,同樣是兩個檔案。

randomstring.h

#pragma once

#define rdalltype  0x07  //大小寫和數字

#define rdnum      0x01  //數字

#define rdlowercase 0x02 //小寫

#define rduppercase 0x04 //大寫

static

tchar szallchar = _t("abcdefghijklmnopqrstuvwxyza

bcdefghijklmnopqrstuvwxyz0123456789"); 

bool fnrandomstring(const

int nleng, tchar *randstringinput, const

int ntype); 

randomstring.cpp

#include "stdafx.h"

#include "randomstring.h"

#include 

#include 

bool fnrandomstring(const

int nleng, tchar *randstringinput,

const

int ntype) 

if (nleng < 0) 

srand((unsigned int)time(null)); 

bool bret = false; 

int nmin = 0; 

int nmax = 62; 

switch(ntype & rdalltype) 

int nrange = nmax – nmin; 

if (ntype == (rdnum | rduppercase)) 

randstringinput[t] = szallchar[nnum]; 

} } 

else } 

//int tt = 0;

//while (randstringinput[tt])

//return

true; 

}

vs2010下編譯通過。

其他精彩博文:

生成隨機字串

產生隨機字串,可用來自動生成密碼 預設長度6位 字母和數字混合 param string len 長度 param string type 字串型別 0 字母 1 數字 其它 混合 param string addchars 額外字元 return string function rand stri...

生成隨機字串

在我們mvc專案中 怎麼產生乙個隨機的字串呢 下面就給大家講乙個方法 產生乙個隨機字串叫getrandomcode 然後有乙個引數 intlength 這是長度 你要產生多少位的字串 然後我們開始 建立乙個隨機數的隨機類 這乙個random 這乙個是c 的隨機類用來隨機生成數字 然後在這裡迴圈多次 ...

生成隨機字串

public class strutil extends cn.hutool.core.util.strutil 生成隨機字串 return public static string getrandomstr int size return string 根據字首生成與日期相關的隨機號碼串 字首 1...