我已经为此苦苦挣扎了几个小时,虽然已经接近目标,但还没有完全实现。我想做的是删除每行中第一个字母字符之前的所有字符。
输入:
1. Bunch of text
1.1 Some more text.
1.2 Even more text.
2. New text
2.1 New subtext
2.1.1 New sub-subtext
预期输出:
Bunch of text
Some more text.
Even more text.
New text
New subtext
New sub-subtext
这是我目前所拥有的,这将删除除空格/制表符之外的所有内容。
任何帮助都将不胜感激!