string - Notepad++ Search Multiple and Replace Respectively -
doing string manipulation , want ask if below possible in notepad++:
i have string years:
10-jan-13 22-feb-14 10-jan-13 10-mar-13
i want
10-jan-13 22-feb-14 10-jan-13 10-mar-13
(there's more data on each line there showing simplified example).
i know can or search | character find, jan|feb|mar... how replace according what's found.
(just trying save time)
thanks.
not sure if it's plugin or built-in, can use textfx characters plugin, select text, , in textfx characters dropdown, click upper case.
update
looks plugin:
textfx menu missing in notepad++
multiple files
i found site gives way convert text uppercase regular expressions: http://vim.wikia.com/wiki/changing_case_with_regular_expressions
so, can bring find in files dialog (ctrl+shift+f), change search mode regular expression, , use this:
find: (\d{2}-\w{3}-\d{2})
replace with: \u\1
directory: whichever directory files in (and files want changed).
\u
uppercase flag, , brackets in find regex correspond \1
backreference, replace (but uppercase).
Comments
Post a Comment