Skip to content

Commit

Permalink
Merge pull request #1398 from MichaelRossner/patch-4
Browse files Browse the repository at this point in the history
exportEA; Replace ":" in diagram names
  • Loading branch information
PacoVK committed May 10, 2024
2 parents 0bb1254 + 9f02698 commit 3935c05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/exportEAP.vbs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
' Regular expression can easily be extended with further characters to be replaced.
Function NormalizeName(theName)
dim re : Set re = new regexp
re.Pattern = "[\\/\[\]\s]"
re.Pattern = "[\\/\[\]\s:]"
re.Global = True
NormalizeName = re.Replace(theName, "_")
End Function
Expand Down

0 comments on commit 3935c05

Please sign in to comment.