I've a textbox in an ASP.NET application, for which I need to use a regular expression to validate the user input string. Requirements for regex are -
- It should allow only one space between words. That is, total number of spaces between words or characters should only be one.
- It should ignore leading and trailing spaces.
Matches:
- Test
- Test abc
Non Matches:
- Test abc def
- Test abc --> I wanted to include multiple spaces between the 2 words. However the editor ignores these extra spaces while posting a question.