This file contains hidden or 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
# Problem | |
Find partial valid email address or partial phone number. | |
# Answer | |
^(([\w_]+@))||((\d[\d-]*))$ | |
It's not a perfect solution, but it'll work for the given test cases. | |
# Given Test Cases | |
This file contains hidden or 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
<cffunction name= "storeStructIntoSession" | |
output= "false" | |
hint= "I store a form into the session scope"> | |
<cfargument name= "stTarget" | |
required= "true" | |
hint= "I am the target struct for storage." /> | |
<cfargument name= "sSessionKey" | |
required= "false" |
NewerOlder