关于 trim 其实没啥好说的,无非就是去除首位空格,对于现代浏览器来说只是简单的正则 /^\s+|\s+$/ 就可以搞定了.而且支持中文空格 等等.什么 \s 支持 中文空格?是的. 打开 RegExp#character-classes 往下拉一点,找到 \s 这个解释. 原文:Matches a single white space character, including space, tab, form feed, line feed and other Unicode space…
1 match = re.search(pat,str) If the search is successful, search() returns a match object or None otherwise. The code match = re.search(pat, str) stores the search result in a variable named "match". Then the if-statement tests the match -- if…