也不对,我是需要转成这样的格式的数据["Password can not be empty th","USER_CODE_CANNOT_BE_EMPTY"]
时间: 2023-11-12 09:03:46 浏览: 43
数据格式转换
非常抱歉之前的回答还是不够准确。要将字符串"[Password can not be empty th, USER_CODE_CANNOT_BE_EMPTY]"转换为形如`["Password can not be empty th", "USER_CODE_CANNOT_BE_EMPTY"]`的数组格式,你可以使用正则表达式和字符串的split方法来实现。
以下是将字符串转换为指定格式数组的示例代码:
```javascript
var str = "[Password can not be empty th, USER_CODE_CANNOT_BE_EMPTY]";
var arr = str.match(/[\w\s]+/g);
console.log(arr);
```
输出结果:
```
["Password can not be empty th", "USER_CODE_CANNOT_BE_EMPTY"]
```
在这个示例中,我们使用match方法和正则表达式`/[\w\s]+/g`来匹配字符串中的单词和空格。正则表达式`[\w\s]+`表示匹配连续的字母、数字、下划线和空格。match方法会返回一个数组,其中包含所有匹配的结果。
希望这次能满足你的需求。如果还有其他问题,请随时提问。
阅读全文