📜  正则表达式转义字符 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:16.792000             🧑  作者: Mango

代码示例3
regex = / a/; // match a bell or alarm
regex = / e/; // matches an escape
regex = / f/; // matches a form feed
regex = / n/; // matches a new line
regex = / Q…E/; // ingnores any special meanings in what is being matched
regex = / r/; // matches a carriage return
regex = / v/; // matches a vertical tab