-1
爲什麼這個正則表達式返回假爲正則表達式測試 「」 字符串
/[\\]/igm.test('asdasdasd\asdasd');
和真正爲
/[\\]/igm.test('asdasdasd\\asdasd');
,當我嘗試這個提示錯誤,爲什麼.. ?
/[\\]/igm.test('abc\xyz');
爲什麼這個正則表達式返回假爲正則表達式測試 「」 字符串
/[\\]/igm.test('asdasdasd\asdasd');
和真正爲
/[\\]/igm.test('asdasdasd\\asdasd');
,當我嘗試這個提示錯誤,爲什麼.. ?
/[\\]/igm.test('abc\xyz');
\x
是ASCII字符,在接下來的兩個字符必須是十六進制數字的字符轉義。因此,\xyz
無效,因爲y和z不是十六進制數字。
在哪個平臺上? –
'\ a'是一個字符,'\\ a'是字符'\'後面跟'a'。至於錯誤,我不知道。 –
我在鉻控制檯上執行它 –