<-- Previous || Up || Next -->

Min Asc Function
Character Arrays Class

Public Function MinAsc( _
    ByVal vString As Variant _
    ) As Variant

"Minimum ASCII"
Return the minimum ASCII value of the characters within a string.

Examples:
    MaxAsc("DCBABCD") = 65
    MaxAsc("123") = 49
    MaxAsc(123) = 49
See also:
    MaxAsc Function
vString: String containing the characters whose ASCII values are examined to determine the minimum. Function returns Null if vString is Null or cannot be fixed up to a String.

Function returns Null if vString is an empty string (one with no characters whose minimum ASCII value could be determined).

Note: Function uses the ASCII value of characters to determine if they match, which is in effect the same as using Binary comparisons.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.