javascript – JS – 收集一个字符之间的所有字母(:)

我希望根据节点中的注释将某些单词转换为图标.

我需要转换一个字符串,如:

This is my fav item :9044: and :456:

进入一个像js数组:

[ 9044,456 ]

我在线尝试了各种正则表达方式,但都没有产生正确的输出.

以前失败的尝试:

——————

var comment = 'This is my fav item :9044: and :456:';
comment.substring(comment.lastIndexOf(":")+1,comment.lastIndexOf(":"));

// ':'

enter image description here

——————

var comment = 'This is my fav item :9044: and :456:';
comment.match(":(.*):");

// [ ':9044: and :456:','9044: and :456' ]

enter image description here

——————

var comment = 'This is my fav item :9044: and :456:';
comment.match(/:([^:]+):/);

// [ ':9044:','9044' ]

enter image description here

解决方法

您可以使用regex.exec

var input = 'This is my fav item :9044: and :456: and another match :abc:';

let regex = /:(\w+):/g;
let results = [];
let number;

while(number = regex.exec(input)) {
  results.push(number[1]);
}
 
console.log(results);

regex = /:\w+:/g;
results = input.match(regex).map(num => num.replace(/:/g,''));
 
console.log(results);

// And it you want to cast numbers
results = input.match(regex).map(num => {
   num = num.replace(/:/g,'');
   return Number.isNaN(+num) ? num : +num;
});
 
console.log(results);

相关文章

前言 做过web项目开发的人对layer弹层组件肯定不陌生,作为l...
前言 前端表单校验是过滤无效数据、假数据、有毒数据的第一步...
前言 图片上传是web项目常见的需求,我基于之前的博客的代码...
前言 导出Excel文件这个功能,通常都是在后端实现返回前端一...
前言 众所周知,js是单线程的,从上往下,从左往右依次执行,...
前言 项目开发中,我们可能会碰到这样的需求:select标签,禁...