regex

How to Check if a String Ends with an Alphanumeric Character in Python

Submitted by razormist on

In this tutorial, we’ll learn how to program “How to Check if a String Ends with an Alphanumeric Character in Python.” The objective is to safely check whether a string ends with an alphanumeric character. This tutorial will guide you through the proper method for determining if a string ends with an alphanumeric character. So, let’s get started!

How to Accept String that Start with a Vowel in Python

Submitted by razormist on

In this tutorial, we will learn how to program "How to Accept a String that Starts with a Vowel in Python." We will check if the given string begins with a vowel. The objective is to safely and accurately validate if the entered string starts with a vowel. A sample program will be provided to demonstrate the coding process.

AngularJS Form Validation

Submitted by nurhodelta_17 on
This tutorial tackles on how to create a form validation in Angular JS. Validation is checking the inputs of a form whether the user's input meet the rules set in the application. In this tutorial, I have disabled the button to submit if an input is invalid. Angular JS is a javascript framework maintained by Google and is capable of creating Single-Page Applications.

How to Do Pattern Matching in VB.NET

Submitted by ashok05 on
HOW TO DO PATTERN MATCHING IN VB.NET Searching for a particular text is one of the important applications in text processing. Searching becomes more difficult when the size of text increases. Regular expression is a method used to reduce the time and complexity of searching. Regular expressions also called as RegEX which describes the pattern (set of strings which needs to be searched). HOW TO