Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 585 Bytes

regex.md

File metadata and controls

30 lines (19 loc) · 585 Bytes

Intro

The vpn list on expressvpn.com/setup#manual can be copied and transformed into a transmission-ovpn readable format, to create it from scratch with the kost recent servers. With the regex steps below (search & replace), this can be easily transformed

Remove headers

Americas\n
Europe\n
Asia Pacific\n
Middle East & Africa\n

To lowercase

(\w)
\L$1

Whitespaces to underscore

\s
_

Append protocol type

(.*)
$1_udp

Prepend my_expressvpn_

(.*)
my_expressvpn_$1