function isDigit(s) { var patrn=/^[0-9]{1,20}$/; if (!patrn.exec(s)) return false return true } //校验登录名:只能输入5-20个以字母开头、可带数字、“_”、“.”的字串 function isRegisterUserName(s) { var patrn=/^[a-zA-Z]{1}([a-zA-Z0-9]|[._]){4,19}$/; if (!patrn.exec(s)) return fal
用来分析WINDOWS PE, LIB, COFF文件, 从LIB文件中提取OBJ文件。这是我发的开源项目, SVN地址为:https://pe-master.googlecode.com/svn/trunk. Analyze file of pe,lib, coff format, and extract the obj file from the lib file.this is my open source project.that s developing now,you can jo