标签:bsp ace 匹配 方法 AC 去掉空格 replace 使用 trim
一.replace正则匹配
去掉所有的空格:str = str.replace(/\s*/g,‘‘);
去掉两头空格:str = str. replace(/^\s*|\s*$/g,‘‘);
去掉左边空格:str=str.replace(/^\s*/,‘‘);
去掉右边空格:str = str.replace(/(\s*$)/g,‘‘);
二.使用trim方法
无法去掉中间的空格
标签:bsp ace 匹配 方法 AC 去掉空格 replace 使用 trim
原文地址:https://www.cnblogs.com/theworldofbeisong/p/9220464.html