RegEx Notepad++ Python Script to change Date Format -
gang...i need notepad++ python script teaching moment.
i want find , replace date format (mm/dd/yy
, replace yyyy-mm-dd
). in notepad++ regex can with
find: (([0-9]+)/+([0-9]+)/+([0-9]+)) replace: 20\3-\1-\2
would show me notepad++ python script accomplish same thing? think knowledge gap in group replacement
if speek of python script notepad++ there is
# regular expressions search , replace editor.rereplace(r"^([a-z]{3,5})--\1", r"code: \1")
on page.
Comments
Post a Comment