我需要从字符串中删除(1.)序列号(1.这是文本) 我如何从字符串中删除序列号并获得给定的输出。
var str = '1. This is dummy text(1.1).';
Output:
This is dummy text(1.1).
答案 0 :(得分:5)
您可以使用regex替换
str.replace(/^\d+\.\s+/, '')
这将替换:
^ // from the beginning of the string
\d+ // one or multiple digits
\. // followed by literal dot
\s+ // followed by one or multiple whitespace characters