Monthly Archives: November 2020

VB.NET || How To Validate An Email Address Using VB.NET

The following is a module with functions which demonstrates how to determine if an email address is valid using VB.NET.

This function is based on RFC2821 and RFC2822 to determine the validity of an email address.


1. Validate Email – Basic Usage

The example below demonstrates the use of ‘Utils.Email.IsValid‘ to determine if an email address is valid.


2. Validate Email – Additional Options

The example below demonstrates the use of ‘Utils.Email.IsValid‘ to determine if an email address is valid with additional validation options.

Supplying options to verify an email address uses the default validity rules, in addition to the provided validation options.

This allows you to add custom rules to determine if an email is valid or not. For example, the misspelling of common email domains, or known spam domains.


3. Utils Namespace

The following is the Utils Namespace. Include this in your project to start using!


4. More Examples

Below are more examples demonstrating the use of the ‘Utils‘ Namespace. Don’t forget to include the module when running the examples!

QUICK NOTES:
The highlighted lines are sections of interest to look out for.

The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.

VB.NET || How To Validate A Phone Number Using VB.NET

The following is a module with functions which demonstrates how to validate a phone number using VB.NET.

Not only does this function check formatting, but follows NANP numbering rules by ensuring that the first digit in the area code and the first digit in the second section are 2-9.


1. Validate Phone Number

The example below demonstrates the use of ‘Utils.IsValidPhoneNumber‘ to determine if a phone number is valid.


2. Utils Namespace

The following is the Utils Namespace. Include this in your project to start using!


3. More Examples

Below are more examples demonstrating the use of the ‘Utils‘ Namespace. Don’t forget to include the module when running the examples!

QUICK NOTES:
The highlighted lines are sections of interest to look out for.

The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.

VB.NET || How To Shuffle & Randomize An Array/List/IEnumerable Using VB.NET

The following is a module with functions which demonstrates how to randomize and shuffle the contents of an Array/List/IEnumerable using VB.NET.

This function shuffles an IEnumerable and returns the results as a new List(Of T).

This function is generic, so it should work on IEnumerables of any datatype.


1. Shuffle – Integer Array

The example below demonstrates the use of ‘Utils.Shuffle‘ to randomize an integer array.


2. Shuffle – String List

The example below demonstrates the use of ‘Utils.Shuffle‘ to randomize a list of strings.


3. Shuffle – Custom Object List

The example below demonstrates the use of ‘Utils.Shuffle‘ to randomize a list of custom objects.


4. Utils Namespace

The following is the Utils Namespace. Include this in your project to start using!


5. More Examples

Below are more examples demonstrating the use of the ‘Utils‘ Namespace. Don’t forget to include the module when running the examples!

QUICK NOTES:
The highlighted lines are sections of interest to look out for.

The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.

VB.NET || Word Wrap – How To Split A String Text Into lines With Maximum Length

The following is a module with functions which demonstrates how to split text into multiple lines using VB.NET.

The following function is an extension method, which takes a string, and splits it into multiple lines (array indices) of a specified length.

An optional boolean parameter specifies whether this function should break up long individual words to fit as many characters as possible on a line.

With this option enabled, if a word is too long to fit on a line, the word is broken up to fit as many characters as possible up to the maximum length on the current line, and the remaining characters gets moved to the next line (the next array index).

Note: Don’t forget to include the ‘Utils Namespace‘ before running the examples!


1. Word Wrap – Don’t Break Words

The example below demonstrates the use of ‘Utils.WordWrap‘ to split a string into multiple lines.

In this example, individual words are not broken up. They are simply moved onto the next line (if necessary).


2. Word Wrap – Break Words

The example below demonstrates the use of ‘Utils.WordWrap‘ to split a string into multiple lines.

In this example, individual words are broken up and moved onto the next line (if necessary), with the default hyphen character used, which is a dash (‘-‘).


3. Utils Namespace

The following is the Utils Namespace. Include this in your project to start using!


4. More Examples

Below are more examples demonstrating the use of the ‘Utils‘ Namespace. Don’t forget to include the module when running the examples!

QUICK NOTES:
The highlighted lines are sections of interest to look out for.

The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.

VB.NET || How To Get First/Last Day Of The Week And The First/Last Day Of The Month

The following is a module with functions which demonstrates how to get the first and last day of the week, as well as how to get the first and last day of the month using VB.NET.


1. First & Last Day Of Week

The example below demonstrates the use of ‘Utils.DateRange.GetWeekStartAndEnd‘ to get the first and last day of the week.

By default, the start of the week is set on Monday. This can be changed by setting the second parameter to any valid property contained in the Microsoft.VisualBasic.FirstDayOfWeek enum.


2. First & Last Day Of Month

The example below demonstrates the use of ‘Utils.DateRange.GetMonthStartAndEnd‘ to get the first and last day of the week.


3. Utils Namespace

The following is the Utils Namespace. Include this in your project to start using!


4. More Examples

Below are more examples demonstrating the use of the ‘Utils‘ Namespace. Don’t forget to include the module when running the examples!

QUICK NOTES:
The highlighted lines are sections of interest to look out for.

The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.

VB.NET || Roman Numeral Conversion – How To Convert Roman Numeral To Integer & Integer To Roman Numeral

The following is a program with functions which demonstrates how to convert roman numerals to integer, and integers to roman numerals.

The sample program implemented on this page was presented in a Data Structures course. This program was assigned in order to practice the use of the class data structure.


1. Roman Numeral Conversion

The example below demonstrates how to convert integers to roman numerals and roman numerals to integers.

QUICK NOTES:
The highlighted lines are sections of interest to look out for.

The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.

Once compiled, you should get this as your output

======= Decimal Test Start =======
Original = 1987
Converted = MCMLXXXVII
Converted Back To Original = 1987
======= Decimal Test End =======

======= Roman Test Start =======
Original = MCMXCI
Converted = 1991
Converted Back To Original = MCMXCI
======= Roman Test End =======

C++ || Roman Numeral Conversion – How To Convert Roman Numeral To Integer & Integer To Roman Numeral Using C++

The following is a program with functions which demonstrates how to convert roman numerals to integer, and integers to roman numerals.

The sample program implemented on this page is an updated version of a homework assignment which was presented in a C++ Data Structures course. This program was assigned in order to practice the use of the class data structure, which is very similar to the struct data structure.


1. Roman Numeral Conversion

The example below demonstrates how to convert integers to roman numerals and roman numerals to integers.

QUICK NOTES:
The highlighted lines are sections of interest to look out for.

The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.

Once compiled, you should get this as your output

======= Decimal Test Start =======
Original = 1987.000000
Converted = MCMLXXXVII
Converted Back To Original = 1987.000000
======= Decimal Test End =======

======= Roman Test Start =======
Original = McMxcI
Converted = 1991.000000
Converted Back To Original = MCMXCI
======= Roman Test End =======

C++ || Telephone Digit Program – How To Convert Letters To Numbers Using C++

The following is a program with functions which demonstrates how to implement a telephone digit program which converts the letters on a phone number keypad to digits.

The program allows to convert more than one letter at a time, include a hyphen, and allows both upper and lower case.

For example, the input text of “get loan”, the output would be:


438-5626


1. Telephone Digit Program

The example below demonstrates how to convert letters to numbers.

QUICK NOTES:
The highlighted lines are sections of interest to look out for.

The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.

Once compiled, you should get this as your output
(Note: the code was compiled separate times to display different output)

====== RUN 1 ======

This is a program to convert letters to their corresponding telephone digits.

Enter your letters: get loan

The number converted: 438-5626

====== RUN 2 ======

This is a program to convert letters to their corresponding telephone digits.

Enter your letters: getloan

The number converted: 438-5626

====== RUN 3 ======

This is a program to convert letters to their corresponding telephone digits.

Enter your letters: get-loan

The number converted: 438-5626

====== RUN 4 ======

This is a program to convert letters to their corresponding telephone digits.

Enter your letters: GETLOAN

The number converted: 438-5626

====== RUN 5 ======

This is a program to convert letters to their corresponding telephone digits.

Enter your letters: G e T L O a N

The number converted: 438-5626

====== RUN 6 ======

This is a program to convert letters to their corresponding telephone digits.

Enter your letters: 6572782011

The number converted: 657-278-2011