isRegExpMatch()Determine whether or not a RegExp matches an entire string (or the start of a string).
This function is valid in v2.0.0 to v2.24.3. This function has been downloaded 68 times.rgx will be matched against the string to see if the regular expression matches from the beginning. If not specified, a function will be returned that will be used to match against rgx whenever it is called.false
                          true, rgx must only match the beginning of opt_str. If false, rgx must match the entire string opt_str.opt_str is given and is not null or undefined, a boolean will be returned. If opt_onlyCheckStart is true-ish the value returned will indicate if rgx simply matched from the beginning of opt_str. If opt_onlyCheckStart is false-ish, the value returned will indicate if rgx matched all of opt_str. If opt_str is not given or null or undefined a function to match against rgx will be returned which will accept a string as the 1st argument that will act as opt_str would have and a 2nd optional argument which will act as opt_onlyCheckStart would have and will return a boolean indicating if rgx matches str.This function directly requires the following function which is included automatically:
slice()This function is directly required by the following functions:
isSpace()isWhitespace()