正则表达式不应仅允许数字

正则表达式不应仅允许数字

本文介绍了正则表达式不应仅允许数字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想要正则表达式,可以接受数字和字母或只是字母而不仅仅是数字。



我是这个表达的新手,任何人都建议我表达。



有效:



字母+数字



仅限字母



数字+字母




无效:



0-9(仅限数字)

解决方案



I want regular expression that can accept numbers and alphabets or just alphabets but not numbers only.

I am new to this expressions, any one suggest me the expression.

valid:

alphabets + numerics

alphabets only

numerics + alphabets


Invalid:

0-9(numerics only)

解决方案




这篇关于正则表达式不应仅允许数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 12:16