File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,11 @@ begin
2323end;
2424
2525(*
26- ## String.IsURL
26+ ## String.IsEmail
2727```pascal
28- function String.IsURL (): Boolean;
28+ function String.IsEmail (): Boolean;
2929```
30- Checks if a string is a valid "URL" with some predefined regex patterns.
30+ Checks if a string is a valid email address with some predefined regex patterns.
3131*)
3232function String.IsEmail(): Boolean;
3333const
@@ -37,11 +37,11 @@ begin
3737end;
3838
3939(*
40- ## String.IsEmail
40+ ## String.IsTime
4141```pascal
42- function String.IsEmail (): Boolean;
42+ function String.IsTime (): Boolean;
4343```
44- Checks if a string is a valid email address with some predefined regex patterns.
44+ Checks if a string is a valid time format with some predefined regex patterns.
4545*)
4646function String.IsTime(): Boolean;
4747const
You can’t perform that action at this time.
0 commit comments