Bugfix ews 163, -,- should be replaced by - and not empty
This commit is contained in:
parent
76a32c700f
commit
b7d4fba9a9
1 changed files with 1 additions and 1 deletions
|
|
@ -166,7 +166,7 @@ class ParseULine (var line: String, var measure: Int) {
|
|||
}
|
||||
}
|
||||
private fun parseUStage3() {
|
||||
parsedString = parsedString.replace("-,-", "")
|
||||
parsedString = parsedString.replace("-,-", "-")
|
||||
.replace(Regex("([:!|])-,-([:!|])"), "$1-$2")
|
||||
.replace(Regex("([:!|])-\\.-([:!|])"), "$1-$2")
|
||||
.replace(Regex(",-([:!|])"), "$1")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue