J
J
jumic2020-02-13 09:21:30
Notepad++
jumic, 2020-02-13 09:21:30

Using regular expression in Notepad++ select first 2 characters and 3,4 character from md5 hash?

We have an md5 hash, for example c1c425268e68385d1ab5074c17a94f14
1) with which regular expression should we select only the first 2 characters to get c1?
2) what regular expression to select only the 3rd and 4th character to get c4?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
dodo512, 2020-02-13
@jumic

Find: ^(..).+
Replace: $1
Find: ^..(..).+
Replace:$1

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question