代码搜索:validate
找到约 3,608 项符合「validate」的源代码
代码结果 3,608
www.eeworm.com/read/460530/7248261
gif validate.gif
www.eeworm.com/read/447626/7549007
gif validate.gif
www.eeworm.com/read/446236/7583415
h validate.h
#ifndef VALIDATE_H
#define VALIDATE_H
bool ValidateAll();
bool TestSettings();
bool ZKValidate();
bool MD2Validate();
bool MD5Validate();
bool SHAValidate();
bool HAVALValidate();
bool
www.eeworm.com/read/443041/7639168
gif validate.gif
www.eeworm.com/read/438996/7718220
js validate.js
/*正则表达式 只允许输入整数*/
function IntegerValidate(input_string)
{
return(/^(?:[\+\-]?\d+(?:\.\d+)?)?$/g.test(input_string));
}
/*正则表达式 允许整数或小数*/
function DecimalValidate(input_string)
{
retur
www.eeworm.com/read/437246/7752901
h validate.h
#ifndef CRYPTOPP_VALIDATE_H
#define CRYPTOPP_VALIDATE_H
#include "cryptlib.h"
bool ValidateAll(bool thorough);
bool TestSettings();
bool TestOS_RNG();
bool ValidateBaseCode();
bool Valida
www.eeworm.com/read/199919/7814559
c validate.c
/*****************************************************************************
* validate.c - validation suite for testing the implementation of a
* Wind River VxWorks (R) kernel AP
www.eeworm.com/read/399948/7819715
js validate.js
function checkstring(name,data,allowednull)
{
var datastr = data;
var lefttrim = datastr.search(/\S/gi);
if (lefttrim == -1) {
if (allowednull) {
return 1;
} else {
alert