/** * @return {boolean} */ function IsSex(str) { var pattern = new RegExp("[/^男$|^女&/]"); return pattern.test(str); }