Regular Expression for Multiline TextBox
I have defined a Textbox with Multiline property.
This text box is suppose to accept any character
including white space such as carriage return, newline etc.
Also, the total no. of characters should not exceed 120.
I have tried .{1,120} - It works in the sense that it accepts any
character except carriage return.
What is the correct Regular Expression, I can define for Regular Expression Validator for this?
|