Javascript 正则表达式的字符类使用说明
[^...] 不在方括号之中的任意字符
需要注意的是, 在方括号之内也可以使用特殊的字符类转序列,对于\ () []这5个字符如果要出现在方括号中则需要转义,如以下二个效果是一样的:
/[^.*?+]/
/[^\.\*\?\+]/
另补充一点是[\b]是回退键的直接量:
/[\b]/.test("[\b]") // true
[^...] 不在方括号之中的任意字符
需要注意的是, 在方括号之内也可以使用特殊的字符类转序列,对于\ () []这5个字符如果要出现在方括号中则需要转义,如以下二个效果是一样的:
发表者 俞 伟军 位置在: 9/29/2008 05:59:00 PM 0 评论
标签: JavaScript , RegExp
080927 15:28:42 [Note] Slave: connected to master 'test@localhost:3306',replication resumed in log 'mysql-bin.000003' at position 34699088
080927 15:28:42 [ERROR] Error reading packet from server: Got packet bigger than 'max_allowed_packet' bytes ( server_errno=2020)
080927 15:28:42 [Note] Slave I/O thread: Failed reading log event, reconnecting to retry, log 'mysql-bin.000003' position 34699088
080927 15:28:42 [Note] Slave: connected to master 'test@localhost:3306',replication resumed in log 'mysql-bin.000003' at position 34699088
发表者 俞 伟军 位置在: 9/27/2008 03:38:00 PM 0 评论
标签: Error , MySQL , Replication , Server
Firstly, download rsync and make install, then:
Rsync Server configure file example:
发表者 俞 伟军 位置在: 9/18/2008 11:27:00 PM 0 评论
标签: Backup , Configuration , Install , Linux , rsync , Server