Source Code : Special classes for regular expression
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://php.net/.
Click Here or search from google with Libraries Name you get jar file related it and also http://php.net/ is a official site
Special classes for regular expression
alpha represents a letter of the alphabet (either upper- or lowercase). This is equivalent to [A-Za-z].
digit represents a digit between 09 (equivalent to [0-9]).
alnum represents an alphanumeric character, just like [0-9A-Za-z].
blank represents "blank" characters, normally space and Tab.
cntrl represents "control" characters, such as DEL, INS, and so forth.
graph represents all the printable characters except the space.
lower represents lowercase letters of the alphabet only.
upper represents uppercase letters of the alphabet only.
print represents all printable characters.
punct represents punctuation characters such as "." or ",".
space is the whitespace.
xdigit represents hexadecimal digits.
Thank with us