summaryrefslogtreecommitdiff
path: root/ADSBDecoder/ADSBRegEx.swift
blob: e9ebe1709890a4430c0deac02a38f66e8207a556 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
//  ADSBRegEx.swift
//  ADSBDecoder
//
//  Created by Jacky Jack on 30/06/2024.
//

import Foundation
import RegexBuilder

let matchADSBLong = Regex {
    Anchor.startOfLine
    "*"
    
        Repeat(
            CharacterClass(
                ("a"..."f"),
                ("0"..."9")
            )
            ,count:28)
    
    ";"
}

let matchADSBShort = Regex {
    Anchor.startOfLine
    "*"
    Repeat(
        CharacterClass(
            ("a"..."f"),
            ("0"..."9")
        )
        ,count:14)
    ";"
}