Search found 2 matches
- 08.01.2023 00:24
- Forum: General - CudaText
- Topic: How to add \t before and after the number using regex
- Replies: 3
- Views: 932
- 07.01.2023 09:04
- Forum: General - CudaText
- Topic: How to add \t before and after the number using regex
- Replies: 3
- Views: 932
How to add \t before and after the number using regex
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.