Skip to content

Commit

Permalink
Alter callsign regex to support BV400
Browse files Browse the repository at this point in the history
  • Loading branch information
KC3PIB committed Mar 26, 2024
1 parent f817554 commit c2f4c3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WsjtxUtils.WsjtxMessages/QsoParsing/BaseOsoParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ internal abstract class BaseOsoParser
// prefix
@"(?<callprefix>(?:(?:[A-PR-Z][A-Z]?)|(?:[2-9][A-Z]{1,2}))\d)" +
// suffix
@"(?<callsuffix>\d{0,3}[A-Z]{1,8})" +
@"(?<callsuffix>\d{0,3}[A-Z]{0,8})" +
// modifier
@"(?<modifier>\/[\dA-Z]{1,4})?$",
RegexOptions.Compiled);
Expand Down

0 comments on commit c2f4c3f

Please sign in to comment.