Angular 13 Regex Validate URL with Reactive Forms

Angular 13 URL validation with regular expression; In this article, we’ll discover how to use regex to validate URLs in angular 13 applications.. Angular 13 Regex Validate URL with Reactive Forms Use the following procedures with angular 13 apps to validate urls using regex: Step 1 – Create New Angular App First of all, open your … Read more

Angular 13 CRUD Example with Web API

Crud operation application in angular 13; In this tutorial, we will learn how to create crud operation apps in angular 13 using web rest API services. Angular 13 CRUD Operation Example with Web API Use the following steps and create crud (create, read, update, delete) app in angular 13 apps; as follows: Step 1 – … Read more

Get Current Page URL, Path, Host and hash using jQuery

Get current Page URL, Path, and hash using jQuery; In this tutorial, you will learn how to get the current page URL, pathname, hostname, origin using the jQuery. Let’s start the tutorial to find the current page URL and find the pathname, hostname, origin from the current page URL using jQuery with example. How to … Read more

JavaScript String indexOf(): Find Occurrence Position in String

In this tutorial, you will learn how to find the first occurrence of a character’s position in a string using the JavaScript string indexOf() method. The indexOf() method in JavaScript is used to find the first occurrence of a character in a given string. It returns the position of the first occurrence of the character … Read more

Send Email in CodeIgniter 4 With SMTP

In this Codeigniter tutorial, we would love to share with you how to send email from localhost to server in Codeigniter 4. Sending emails in CodeIgniter to multiple recipients, sending HTML emails and using SMTP is very easy because of the new functionality. Now the stable version of the framework is available to download from the official website. … Read more

Python Program to Swap Two Elements in a List

In this tutorial, we will learn how to swap elements in a list using Python. We’ll cover three different methods: a function, direct swapping of the first and last elements, and swapping using the pop() and insert() methods. Method 1: Swap Two Elements in a List using Function Here are the steps to write a Python … Read more

Python Program to print all permutations of a given string

Python Program to print all permutations of a given string;  In this Python lesson, we’ll show you two different approaches for utilizing either a built-in module or a standalone module to detect and output permutations of a given string in Python. Before we share with you a Python program to find every variant of the supplied … Read more

Forgot/Reset Password in Node js + Express + MySQL

In this tutorial, we’ll guide you through the process of sending a reset password link via email in a Node.js + Express + MySQL application using Nodemailer. We’ll also cover how to reset/update the password in the application using the sent reset password link. If you’ve already created a login and registration application using Node.js … Read more