forked from nus-cs2103-AY2425S1/tp
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #182 from Andrew22Teoh/ExpandTagRegex
Expand tag regex
- Loading branch information
Showing
16 changed files
with
74 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
"phone" : "98765432", | ||
"email" : "[email protected]", | ||
"address" : "311, Clementi Ave 2, #02-25", | ||
"tags" : [ "owesMoney", "friends" ], | ||
"tags" : [ "owes money", "friends" ], | ||
"dateOfLastVisit" : "01-02-2024", | ||
"emergencyContact" : "92173902", | ||
"remark": "" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
"phone" : "98765432", | ||
"email" : "[email protected]", | ||
"address" : "311, Clementi Ave 2, #02-25", | ||
"tags" : [ "owesMoney", "friends" ], | ||
"tags" : [ "owes money", "friends" ], | ||
"dateOfLastVisit" : "01-02-2024", | ||
"emergencyContact" : "92173902", | ||
"remark" : "" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ public class ParserUtilTest { | |
private static final String INVALID_LONG_PHONE = "123456789"; | ||
private static final String INVALID_EMAIL = "example.com"; | ||
private static final String INVALID_EMERGENCY_CONTACT = INVALID_PHONE; | ||
private static final String INVALID_TAG = "#friend"; | ||
private static final String INVALID_TAG = " "; | ||
private static final String INVALID_DATEOFLASTVISIT = "13/13/2024"; | ||
|
||
private static final String NO_ENTRY = ""; | ||
|
@@ -43,7 +43,7 @@ public class ParserUtilTest { | |
private static final String VALID_EMAIL = "[email protected]"; | ||
private static final String VALID_EMERGENCY_CONTACT = "62345678"; | ||
private static final String VALID_TAG_1 = "friend"; | ||
private static final String VALID_TAG_2 = "neighbour"; | ||
private static final String VALID_TAG_2 = "nut allergy"; | ||
private static final String VALID_DATEOFLASTVISIT = "02-02-2024"; | ||
|
||
private static final String WHITESPACE = " \t\r\n"; | ||
|
Oops, something went wrong.