You can use numbered sub groups. i.e: Find: ([0-9]{6}),([0-9]{2}). Replace: \1.\2. Example in Python: import re inp = '653433,78' out = re.sub(r'([0-9]{6}) ...
確定! 回上一頁