要將十六進位數字xxx 指定的Unicode 字元與JavaScript 正規表示式相匹配,請使用下列程式碼-
\uxxxx
您可以嘗試執行以下程式碼來匹配十六進位數字字元xxxx。它符合十六進制數 53,即 S -
<html> <head> <title>JavaScript Regular Expression</title> </head> <body> <script> var myStr = "Secure and Responsive!"; var reg = /\u0053/g; var match = myStr.match(reg); document.write(match); </script> </body> </html>
以上是符合由十六進位數字XXXX指定的Unicode字符的詳細內容。更多資訊請關注PHP中文網其他相關文章!