如何使用正規表示式在字元括號中包含連字號
在正規表示式中使用括號時,您可能會遇號到困難包括連字符。下面的問題說明了這個問題:
In a JavaScript validator, when using the following regex: $.validator.addMethod('AZ09_', function (value) { return /^[a-zA-Z0-9.-_]+$/.test(value); }, 'Only letters, numbers, and _-. are allowed'); Trying to match a value like "test-123" still triggers an error as if the hyphen is invalid, despite attempting to escape it with \-.
這個問題的解決方法是將連字符放在字元括號的開頭或結尾。此修改可確保它成功包含在允許的字元中:
/^[a-zA-Z0-9._-]+$/
透過進行此調整,連字符現在被識別為正則表達式中的有效字元。
以上是如何在正規表示式字元類別中正確包含連字符?的詳細內容。更多資訊請關注PHP中文網其他相關文章!