- Ctrl + H
- Найти что:
^(?:[^,]*,){8}\K[^,]*(?=(?:,[^,]*){5},1024,)
- Заменить на:
0
- CHECK Обтекание
- CHECK Регулярное выражение
- Заменить все
Объяснение:
^ # beginning of line
(?:[^,]*,){8} # non capture group, 0 or more non comma followed by comma, must appear 8 times
\K # forget all we have seen until this position
[^,]* # 0 or more non comma
(?= # positive lookahead, make sure we have after:
(?:,[^,]*){5} # 5 times a comma followed by 0 or more non comma
,1024, # number 1024 surounded by comma
) # end lookahead
Снимок экрана (до):
Снимок экрана (после):