Added additional allowed characters

This commit is contained in:
dankito 2020-04-23 03:04:06 +02:00
parent 9d10078db1
commit 0f787ad0ef
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ import java.util.regex.Pattern
open class SepaMessageCreator : ISepaMessageCreator {
companion object {
const val AllowedSepaCharacters = "A-Za-z0-9\\?,\\-\\+\\./\\(\\) "
const val AllowedSepaCharacters = "A-Za-z0-9\\?,\\-\\+\\.,:/\\(\\)\'\" "
val AllowedSepaCharactersPattern: Pattern = Pattern.compile("^[$AllowedSepaCharacters]*$")