Daily Archives: November 24, 2020

VB.NET || How To Remove Excess Whitespace From A String Using VB.NET

The following is a module with functions which demonstrates how to remove excess whitespace from a string, replacing multiple spaces into just one using VB.NET.


1. Remove Excess Whitespace

The example below demonstrates the use of ‘Utils.ToSingleSpace‘ to remove excess whitespace from a string.


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 Remove All Whitespace From A String Using VB.NET

The following is a module with functions which demonstrates how to remove all whitespace from a string using VB.NET.


1. Remove All Whitespace

The example below demonstrates the use of ‘Utils.RemoveWhitespace‘ to remove all whitespace from a string.


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 Remove Non Alphanumeric Characters From A String Using VB.NET

The following is a module with functions which demonstrates how to remove and replace non alphanumeric characters from a string using VB.NET.


1. Alphanumeric Characters

The example below demonstrates the use of ‘Utils.ToAlphaNumeric‘ to create an alphanumeric string.


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 Replace Entire Words In A String Using VB.NET

The following is a module with functions which demonstrates how to replace entire words in a string using VB.NET.

This function is different from String.Replace in that instead of replacing all substring instances in a word, it replaces all instances of matching entire words in a string.


1. Replace Entire Word

The example below demonstrates the use of ‘Utils.ReplaceWord‘ to replace an entire word.


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 Manually Copy Two Streams From One To Another Using VB.NET

The following is a module with functions which demonstrates how to manually copy two steams from one to another using VB.NET.


1. Manually Copy Stream

The example below demonstrates the use of ‘Utils.CopyStream‘ to copy two streams.


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.