Initial import of the ircii-pana-1.1-final source tree.

git-svn-id: svn://svn.code.sf.net/p/bitchx/code/tags/ircii-pana-1.1-final@1 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
Kevin Easton
2008-02-25 09:25:32 +00:00
commit 28febcfea9
1429 changed files with 250653 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
Synopsis:
$isalpha(<text>)
$isdigit(<text>)
Technical:
These function test whether the first character in the given string is
an alphabetical character or a digit. Only the first character is
tested.
Practical:
These functions are useful for testing an input string to see whether it
is a number or a text string. One use for this might be to check if it
would be suitable input for $iptoname() or $nametoip(). Keep in mind
that only the first character is tested, so this isn't a reliable way
to see if the entire string is a number.
Returns:
"true" or "false" value if first character is a letter or a digit
Examples:
$isalpha(hello) returns true
$isalpha(2hello) returns false
$isdigit(123) returns true
$isdigit(2abc) returns true
$isdigit(a123) returns false