Add Minus (-) into pattern but constrain is Munis (-) should not be first character
Add Minus (-) into pattern but constrain is Munis (-) should not be first character
(OP)
<xs:pattern value="^[a-zA-Z0-9\?\,\+\:\(\)\.\'\/ ]{0,105}$" />
This is the pattern where I need to add Minus (-) but restriction is that Minus (-) should not be a first character
Can we write like this?
<xs:pattern value="^[a-zA-Z0-9\?\,\+\:\(\)\.\'\-\/ ]+!^[-]{0,105}$" />
This is the pattern where I need to add Minus (-) but restriction is that Minus (-) should not be a first character
Can we write like this?
<xs:pattern value="^[a-zA-Z0-9\?\,\+\:\(\)\.\'\-\/ ]+!^[-]{0,105}$" />
RE: Add Minus (-) into pattern but constrain is Munis (-) should not be first character
[a-zA-Z0-9\?\,\+\:\(\)\.\'\/ ]
and minus could follow after that i think that something like this:
CODE