我一直在試圖在stackoverflow上搜索並通過谷歌如何去除所有。 (句點),除了數字之間的地方。到目前爲止,我沒有運氣。正則表達式去除字母之間的句號
我有一堆類似的文件名:
this.is.a.file.1233
another.cool.file.v1.2.3
oh.wow.this.file.again.v1.2.4
guess.what.v1.2.3.is.now.out
不過,我想將其顯示爲:
this is a file 1233
another cool file v1.2.3
oh wow this file again v1.2.4
guess what v1.2.3 is now out
使用正則表達式這可能嗎?我無法弄清楚如何成功地完成它,並且用空格替換句點的簡單方法會擾亂版本號的外觀。