From ef1d61f911ebf2ad57f170dec820c55dbe54e851 Mon Sep 17 00:00:00 2001 From: thejockel Date: Fri, 22 Sep 2017 13:11:53 +0200 Subject: [PATCH] Created Regex Beispiele (markdown) --- Regex-Beispiele.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Regex-Beispiele.md diff --git a/Regex-Beispiele.md b/Regex-Beispiele.md new file mode 100644 index 0000000..a9cfc17 --- /dev/null +++ b/Regex-Beispiele.md @@ -0,0 +1,14 @@ +# Hier ein paar Beispiel für Regex + + +only ZVEI to all Plugins with 25### at 85.5MHz +`testfilter = ZVEI;zvei;*;85500000;25[0-9]{3}` + +only POCSAG to MySQL with the text "ALARM:" in the Message +`pocTest = POC;msg;MySQL;*;ALARM:` + +only POCSAG to Telegram with description starting with FF +`pocTelegram = POC;description;Telegram;*;(FF )` + +only POCSAG to Telegram with description starting with BF or FF or IUK +`pocTelegram = POC;description;Telegram;*;(BF )|(FF )|(IUK )` \ No newline at end of file