RegexHelpers extension

Set of helper extension methods on Strings for frequently used Regexs

on

Methods

isAlphabetic() bool

Available on String, provided by the RegexHelpers extension

Returns true if the the target string contains only letters Note that spaces are counted as alphabetic
isAlphanumeric() bool

Available on String, provided by the RegexHelpers extension

Returns true if the the target string contains only letters or digits Note that spaces are counted as alphanumeric
isNumeric() bool

Available on String, provided by the RegexHelpers extension

Returns true if the the target string contains only digits Note that spaces are not counted as numeric