Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个平面文件中有月份值,比如
Month 12 11 1 2 8 10
现在我想在一位数和两位数前面加零。
输出应该像
Month 12 11 01 02 08 10
这是在 PENTAHO 中做的(我将在替换字符串步骤中实现)
我不知道 PENTAHO。但是以下regex应该适用于大多数语言
regex
匹配 : \b([0-9])\b
\b([0-9])\b
代替 : 0$1
0$1
正则表达式101演示