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
{"lastUpload":"2020-05-13T15:05:17.227Z","extensionVersion":"v3.4.3"} |
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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
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
\d{3}\-\d{3}\-\d{4} | |
<td class="regLtCol"> | |
<asp:RequiredFieldValidator ID="phoneReqValidator" runat="server" | |
ErrorMessage="Please input your phone" ControlToValidate="txtPhone" | |
Display="Dynamic">*</asp:RequiredFieldValidator> | |
<asp:RegularExpressionValidator ID="phoneRegexValidator" runat="server" | |
ControlToValidate="txtPhone" | |
ErrorMessage="Please enter a valid phone number (format: 555-555-5555)" | |
ValidationExpression="\d{3}\-\d{3}\-\d{4}" ValidationGroup="personalInfoGroup">*</asp:RegularExpressionValidator> |
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
using System; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
namespace RegularExpressions | |
{ | |
class BasicRegex | |
{ | |
static void Main(string[] args) | |
{ |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace BinarySearch | |
{ | |
class BinaryArray | |
{ | |
private int[] data; // array of values |