Regular Expressions Range of NumbersYou want to match an integer number within a certain range of numbers. You want the regular expression […] September 4, 2016 in Regular Expressions tagged regex / Regular Expressions by Mike
Regular Expression MetacharactersThis table is from the website HScripts.com. Metacharacter Description \ Specifies the next character as either a special […] September 4, 2016 in Regular Expressions tagged regex / Regular Expressions by Mike
Regular Expressions ExamplesA regular expression is a sequence of characters that a search pattern. The search pattern can be used […] September 2, 2016 in Regular Expressions tagged expression / regex / number / regular / phone / match / Regular Expressions by Mike
Regular Expressions Set or Range of CharactersIf you want to match against a set of characters, you can place the set inside [ ]. […] August 30, 2016 in Regular Expressions tagged regex / regular by Mike
Regular Expressions Exact MatchAny sequence of characters that’s not a special RegEx character or operator represents a character literal. JavaScript For […] August 30, 2016 in Regular Expressions tagged Regular Expressions by Mike
Regular Expressions IntroductionA regular expression is a way to express a pattern to match strings of text. The expression itself […] August 29, 2016 in Regular Expressions tagged Regular Expressions by Mike
WordPress EnqueueThis post discusses the recommended way to load JavaScripts and CSS into your WordPress site. Who’s recommendation? I […] August 14, 2016 in JavaScript tagged alert / enqueue / function.php / wordpress / JavaScript / JavaScript and WordPress by Mike
C# Class Library Projects Part 2In this post we provide the C# source code for a very simple example of a class library, […] July 2, 2016 in C# tagged library / project / C# / class / C# Class Library by Mike
C# Class Library Projects IntroductionA project that contains only classes (and other type definitions if necessary) but no entry point is called […] July 2, 2016 in C# tagged library / project / C# / class / C# Class Library by Mike
C# Calling Another Program In a C# ProgramOne C# console program can call another C# console program. The calling program can pass in arguments to […] June 12, 2016 in C# by Mike
C# Execute a Stored ProcedureHow do you execute a SQL Server stored procedure from within a C# program? The Microsoft Developer Network […] June 12, 2016 in C# tagged procedure by Mike
C# XAML ButtonsIn XAML, there are several controls that derive from ButtonBase: Button, RepeatButton, ToggleButton, CheckBox and RadioButton. More ButtonBase-derived […] May 13, 2016 in C# tagged button by Mike