mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-02 14:11:02 +01:00
Stop delimiters breaking MGRS conversion
This commit is contained in:
parent
8d1f668fc5
commit
8b77ad7748
@ -117,7 +117,8 @@ class ConvertCoordinateFormat extends Operation {
|
||||
// Prepare input data
|
||||
if (inFormat === "Geohash" || inFormat === "Military Grid Reference System") {
|
||||
// Geohash only has one value, so just use the input
|
||||
inLat = input;
|
||||
// Replace anything that isn't a valid character in Geohash / MGRS
|
||||
inLat = input.replace(/[^A-Za-z0-9]/, "");
|
||||
} else if (inDelim === "Direction Preceding") {
|
||||
// Split on the compass directions
|
||||
const splitInput = input.split(/[NnEeSsWw]/);
|
||||
|
Loading…
Reference in New Issue
Block a user