Meshtastic-Apple/Meshtastic/Helpers/CommonRegex.swift
2024-07-02 13:13:12 -05:00

29 lines
374 B
Swift

//
// CommonRegex.swift
// Meshtastic
//
// Created by Ben Meadors on 7/2/24.
//
import Foundation
import RegexBuilder
class CommonRegex
{
static let COORDS_REGEX = Regex {
Capture {
Regex {
"lat="
OneOrMore(.digit)
}
}
Capture {" "}
Capture {
Regex {
"long="
OneOrMore(.digit)
}
}
}
.anchorsMatchLineEndings()
}