Mail geändert

This commit is contained in:
ja
2021-10-07 16:02:44 +02:00
parent d887c80f31
commit fc086046e2
4 changed files with 40 additions and 33 deletions

View File

@@ -0,0 +1,17 @@
Imports System.Threading.Tasks
Imports Microsoft.VisualBasic
Public Class RegexSammlung_VERAG
Function getregEmail() As String
Dim strtemp As String = "\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"
Return strtemp
End Function
Function getregUID() As String
Dim strtemp As String = "^[0-9]"
Return strtemp
End Function
Function getregPassword() As String
Dim strtemp As String = "^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[^a-zA-Z\d]).{4,30}$"
Return strtemp
End Function
End Class