Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
How do you match one letter in the current locale?
How do you match one letter in the current locale?
✍: Guest
/[^\W_\d]/
We don't have full POSIX regexps, so you can't get at
the isalpha() <ctype.h> macro save indirectly. You ask
for one byte which is neither a non-alphanumunder, nor
an under, nor a numeric. That leaves just the alphas,
which is what you want.
2013-09-23, 1997👍, 0💬
Popular Posts:
How Many Types of Tables Supported by Oracle? - Oracle DBA FAQ - Managing Oracle Database Tables Ora...
What is Native Image Generator (Ngen.exe)? The Native Image Generator utility (Ngen.exe) allows you ...
What's difference between HashTable and ArrayList ? You can access array using INDEX value of array,...
What is Shell scripting A shell script is a script written for the shell, or command line interprete...
Where Is the Submitted Form Data Stored? - PHP Script Tips - Processing Web Forms When a user submit...