删除空行和数字的正则表达式

Regex to Remove Empty Line and Number

我无法使用 Regex 删除空行后面的数字。这是我的示例段落:

1
- Lorem Ipsum is simply dummy text of

2
the printing and typesetting industry.

49
and more recently with desktop publishing software like Aldus PageMaker.

我需要删除句子开头的所有数字以及空行:

Lorem Ipsum is simply dummy text of the printing and typesetting industry. and more recently with desktop publishing software like Aldus PageMaker.

这是我能想到的正则表达式[\n](.),但它只能删除数字的一位

困难的部分是删除数字,因为数字的位数不是必需的 1 或 2 位数字。我该如何解决这个问题?

将以下正则表达式替换为空白:

^\d*\n

live demo