English 中文(简体)
更改要求必须包括至少一个数字和字母的 Regex to change to must already a please a number and letter? 更改要求必须包括至少一个数字和字母吗?
原标题:Regex to change to must include at least a number and letter?
  • 时间:2012-05-26 03:31:58
  •  标签:
  • php
  • regex

我一分一秒的正反就是这个样子

 /[a-z0-9]{40}/i 

它将匹配任何字符串中没有任何含有字母和/或数字的空格。

我怎样才能更改它, 这样它至少必须包含至少一个数字和至少一个字母字符, 这样如果字符串是全部数字或所有字母, 那么它就不会匹配?

谢谢 谢谢

最佳回答
/([:alpha:].*[:digit:]|[:digit:].*[:alpha:])/

这就要求一个号码随信或一个号码后的信后。

从您原来的正则, 您似乎想要执行40个字符的总共要求。 为此, 请尝试 :

/^(.*[:alpha:].*[:digit:].*|.*[:digit:].*[:alpha:].*){40}$/

注意 额外的 < code>. {{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{>>>> s。只要有1个阿尔法和1个位数,其他字符可以是任何东西。只要有40个。}}只要有40个。

如果您想要避免匹配白色空间, 请将每个 < code>.\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\可以\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签