Press F1, the Textpad help provides a very useful hint with examples:
- Click Ctrl+R
- Text to find:
^.*?$
- Replace with:
'$0',
- Check the "Regular expressions" check-box
- Click "Replace All" button.
Wala!
Мне нужно добавить одиночную кавычку в начале и закончить целочисленное поле из 5 позиций в TextPad.
Пример:
14982 14983 14985 14991 14995 15019
Желаемый результат:
'14982', '14983', '14985', '14991', '14995', '15019'
Press F1, the Textpad help provides a very useful hint with examples:
^.*?$
'$0',
Wala!
Just use the search-and-replace function:
\(\d\d\d\d\d\)
as the source (you can also use \(\d\)
)—space at the end'\1',
as the target (again a space at the end),
at the end of the line(s): , $
as the sourceReplace \(\<[0-9]\\>\)
(words consisting of exactly five digits) with '\1'
, and then ' '
with ', '
.
Два шага: 1. Для первого «» (одинарная кавычка) поместите ^ в текстовое поле «Найти что» и «в текстовое поле« Заменить на ». 2. для вторых «» (одинарная кавычка) и «,» поместите $ в текстовое поле «Найти» и «» в текстовое поле «Заменить на». «D4881», «D2243», «G7051», «X9767», «D3040»,
Enter ^ in the 'Find what' and ' in the 'Replace with' and Regular expression selected
Enter $ in the 'Find what' and ', in the 'Replace with' and Regular expression selected
Более простое решение
(\d)
'\1',
<checked>
Это хорошо сработало для меня:
Найти: (. +) [\ T] + (. +) [\ T] + (. +) $ Заменить: '\ 1', '\ 2', \ 3 '