How to add \t before and after the number using regex
Posted: 07.01.2023 09:04
I get the following text snippet
I would like to add tab before and after the digital number, like
I've tried to find , and replace it with , but it doesn't work.
Any comment on how to make this kind of replacement work? Thanks.
Code: Select all
a12b
c23d
Code: Select all
a 12 b
c 23 d
Code: Select all
(\d{2})
Code: Select all
\t\1\t
Any comment on how to make this kind of replacement work? Thanks.