In Python re.sub(r"(?<=.)(?=(?:...)+$)", ",", stroke ) Um eine Zahl durch Drillinge zu teilen, zB: echo 123456789 | python -c 'import sys;import re; print re.sub(r"(?<=.)(?=(?:...)+$)", ",", sys.stdin.read());' 123,456,789 Wie mache ich dasselbe mit bash /