我有一个字符串
' 10px的' 要么 ' 1.5em'
我需要将它与lodash,(可能是正则表达式)分开并获取此值:
10
px
或
1.5
em
我已尝试过这个:
import words from 'lodash';
let cc= words([v],/(\d+)/);
但它没有用,有什么解决方案吗?
答案 0 :(得分:1)
您可以通过以下方式使用正则表达式
let fontsize = '10px';
console.log(fontsize.match(/(\d+)(\w+)/));

您将获得第1和第2个索引中的值