Regex
-
hi all How can i use Regex character to A-Z, a-z 0-9 If my string is utf-8 is error ex "â bo" will is error
if ur string is utf-8 then expression should be [a-zA-Z]*-[0-9]*
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.
-
hi all How can i use Regex character to A-Z, a-z 0-9 If my string is utf-8 is error ex "â bo" will is error
AnhTin wrote:
How can i use Regex character to A-Z, a-z 0-9
What is regex character ? Do you want to match A-Z, a-z 0-9 ? then use
[\w]*
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
-
if ur string is utf-8 then expression should be [a-zA-Z]*-[0-9]*
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.
Sonia Gupta wrote:
if ur string is utf-8 then expression should be [a-zA-Z]*-[0-9]*
why
-
?All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
-
AnhTin wrote:
How can i use Regex character to A-Z, a-z 0-9
What is regex character ? Do you want to match A-Z, a-z 0-9 ? then use
[\w]*
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions