how to pass custom regex in jquery validation

JavaScript
$("#Textbox").rules("add", { regex: "^[a-zA-Z'.\\s]{1,40}$" })$.validator.addMethod(
        "regex",
        function(value, element, regexp) {
            var re = new RegExp(regexp);
            return this.optional(element) || re.test(value);
        },
        "Please check your input."
);
Source

Also in JavaScript: