Please help me correct this regular expression in C# to match/validate only when the following is true:
- Always starts with
da/ - At least one single character after
da/ - Only non capitals are allowed, range from a-z (both included)
- digits 0-9 allowed
- dashes are allowed (-)
This is what I have, but it's not working:
/^da/+[a-z0-9+-]+$/
Example of accepted string that will validate the regular expression:
da/this-will-validate-correct-1
^da/[a-z0-9+-]+$