mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
29 lines
374 B
Swift
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()
|
|
}
|