Mikrotik: Belajar Regex
Revision as of 12:46, 3 October 2020 by Onnowpurbo (talk | contribs)
Sumber: https://mikrotik.tips/understanding-regex-mikrotik-routeros/
Langkah
- Setup tujuan
- Buat matcher
- terjemahkan ke regex
Contoh
- ingin match url yang ada youtube-nya
- pattern-nya
xxx.youtube.xxx xxxyoutubexxx.xom
- regex-nya adalah
^.+\.youtube\..+$ ^.*youtube.*\.com$
Keterangan
^ match beginning of the string . match single character + * \. untuk mendefinisikan (dot) . bukan (.) $ match end of string