Skip to content

Instantly share code, notes, and snippets.

@Fenchurchh
Last active March 6, 2016 16:35
Show Gist options
  • Save Fenchurchh/e62af43d29cd1eacd3b4 to your computer and use it in GitHub Desktop.
Save Fenchurchh/e62af43d29cd1eacd3b4 to your computer and use it in GitHub Desktop.
function createAddressHash( street, houseId ) {
let hash = street + "_" + houseId
hash = hash.toLowerCase()
.replaceAll( "ß", "ss" )
.replaceAll( " ", "_" )
.replaceAll( "-", "_" )
.replaceAll( "str.", "strasse" )
return hash
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment