i found a use full regular expression vaildating input string, you can use it to filter sql injection attacks while taking input for username, title ect.
^[a-zA-Z]+(([.- ][a-zA-Z0-9 ])?[a-zA-Z0-9]*)*$
{ Comments on this entry are closed }
i found a use full regular expression vaildating input string, you can use it to filter sql injection attacks while taking input for username, title ect.
^[a-zA-Z]+(([.- ][a-zA-Z0-9 ])?[a-zA-Z0-9]*)*$
{ Comments on this entry are closed }
hi use this regular expression for email address validation
^[A-Za-z0-9](([_.-]?[a-zA-Z0-9]+)*)@([A-Za-z0-9]+)(([.-]?[a-zA-Z0-9]+)*).([A-Za-z]{2,})$
Regular expression validator in asp.net would be like
Chears…
{ Comments on this entry are closed }
here are some Regular expressions for html parsing . you can use it in your application while parsing html table to fetch data from it
{ Comments on this entry are closed }