如何在数字之间添加括号?我知道如何添加破折号,它们是否以相同的方式添加?

How to add parentheses between numbers? I know how to add dashes, are they doing the same way?

如何在数字之间添加括号?我知道如何添加破折号,它们是否以相同的方式添加?像 R 编程中的 123456789 到 (123)456789?

sub("(\d{3})", "(\1)", 123456789)
[1] "(123)456789"