CBielstein / APRSsharp

APRS# - Modern APRS software for the amateur radio community
MIT License
12 stars 5 forks source link

Consider using regex for packet decode parsing #70

Closed CBielstein closed 2 years ago

CBielstein commented 3 years ago

Description

Currently, packet decode uses substring, charAt, indexOf, and other string methods to handle parsing packets. This can likely be more concisely written using regex.

This issue is to consider if this is true and, if it is, make the switch in code.

Acceptance Criteria