Daily Archives: November 30, 2020

VB.NET || How To Replace A Letter With Its Alphabet Position Using VB.NET

The following is a module with functions which demonstrates how to replace a letter with its alphabet position using VB.NET.


1. Replace With Alphabet Position

The example below demonstrates the use of ‘Utils.GetAlphabetPosition‘ to replace a letter with its alphabet position.


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 Generate A Random String Of A Specified Length Using VB.NET

The following is a module with functions which demonstrates how to generate a random code of a specified length using VB.NET.

The function demonstrated on this page has the ability to generate random strings that contains only letters, only numerical digits, or alphanumeric strings.


1. Random Code – Alphabetical

The example below demonstrates the use of ‘Utils.GetRandomCode‘ to generate a code of a specified length that contains only letters.

The optional function parameter determines the type of code that is generated.


2. Random Code – Numeric

The example below demonstrates the use of ‘Utils.GetRandomCode‘ to generate a code of a specified length that contains only digits.

The optional function parameter determines the type of code that is generated.


3. Random Code – Alphanumeric

The example below demonstrates the use of ‘Utils.GetRandomCode‘ to generate a code of a specified length that is alphanumeric.

The optional function parameter determines the type of code that is generated.


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 || How To Get A List Of Files At A Given Path Directory Using VB.NET

The following is a module with functions which demonstrates how to get a list of files at a given directory path using VB.NET.

The function demonstrated on this page returns a list of System.IO.FileInfo, which contains information about the files in the given directory.


1. Get Files In Directory

The example below demonstrates the use of ‘Utils.GetFilesInDirectory‘ to get a list of files at a given path directory.

The optional function parameter lets you specify the search option. This lets you specify whether to limit the search to just the current directory, or expand the search to the current directory and all subdirectories when searching for files.


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.