I want to write a regex expression which allows all the english alphabets and special characters for e.g
Abcdwfg*+""æ-/.,´Øøå&öé
And such string should not start with a number i mean number can come after any alphabet for e.g "Héllo123"
I tried this [a-zA-Z\s]{0,50}
but it only accepts English small and capital letters,
than i tried [\w\sØÖ]{0,100}
but in this i have to explicitly write that these ØÖ
characters should be allowed so i need some help here.
Here is the code where i am trying to do it
<asp:RegularExpressionValidator id="RegularExpressionValidator2" runat="server" ControlToValidate="ForlagName" ErrorMessage="Enter a valid ForlagName." Text="*" Display="Dynamic" ForeColor="Red" ValidationExpression="[a-zA-Z\s]{0,50}" ValidationGroup="vgForlagKey">
</asp:RegularExpressionValidator>