js 获取单引号中的数据
时间: 2023-06-11 10:08:46 浏览: 157
你可以使用正则表达式来获取单引号中的数据,例如:
```javascript
const str = "Hello 'world'!";
const pattern = /'([^']*)'/; // 匹配单引号中的内容
const match = str.match(pattern);
const data = match ? match[1] : ''; // 获取匹配到的内容
console.log(data); // 输出:world
```
这里的正则表达式 `/'([^']*)'/` 匹配由单引号包围的任意字符,其中 `[^']` 表示除了单引号之外的任意字符,`*` 表示重复零次或多次。
阅读全文