ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
Excellent session !!!
i cant access to some of the topics
shouldn't the H match [A-Z] instead of [a-z]?
It will match , powershell is case insensitive by default , if you are specific about case use -cmatch
"david.gutta@contoso.com" -match "[a-z]+\.[a-z]+@contoso.com" . No need to escape @ as it was not reg exp pattern. Any comments?True
No need to escape for @, i tend to do that as i cant remember all characters that have a special meaning , so its a simple way to escape when you use symbols when you are not sure
Excellent session !!!
i cant access to some of the topics
shouldn't the H match [A-Z] instead of [a-z]?
It will match , powershell is case insensitive by default , if you are specific about case use -cmatch
"david.gutta@contoso.com" -match "[a-z]+\.[a-z]+@contoso.com"
. No need to escape @ as it was not reg exp pattern. Any comments?
True
No need to escape for @, i tend to do that as i cant remember all characters that have a special meaning , so its a simple way to escape when you use symbols when you are not sure