Remove white spaces from a string in PHP

By Shristi Rani

In this tutorial, we will see how we can remove white spaces from a string in PHP. We will see various functions to do the same. Remove White Spaces in PHP Removing white spaces fr.... Read More

Unity MonoBehaviour.Invoke with C# examples

By Y SAI KIRAN

Hello programmers, In this article, you will learn about Unity MonoBehaviour.Invoke with C# examples. Before we get started with the building process, we need to know a few concept.... Read More

Swap two elements of 1D array in C++

By Shubhobroto Mukherjee

In this tutorial, we will learn how to swap two elements in a one-dimensional array. This we will see through either using a manual swap function or a built-in swap function in C++.... Read More

How to disable Python warnings

By Aditi Deo

A warning in Python is used to display a message which is not considered an error or exception. For instance, if we use any deprecated features in Python that are basically not all.... Read More

How to convert a datetime object to only a string of date in Python

By Varun Bhattacharya

Hello programmers, in this tutorial we will see how to convert a DateTime object to only a string of data in Python. Often programmers need the date and time from the program. For .... Read More

Flatten an irregular or arbitrarily nested list of lists in Python

By Varun Bhattacharya

Hello programmers, in this tutorial we will see how to flatten an irregular nested list of lists in Python. A list enclosing more than one or more lists within itself is called a n.... Read More

Get the current date and time in every possible format in Python

By Varun Bhattacharya

Hello programmers, in this tutorial we will see how to get the current date and time in Python. Often developers, need to use the current date and time for various manipulations. T.... Read More

Get the current date and time in every possible format in PHP

By Varun Bhattacharya

Greeting programmers, in this tutorial we will see how to get the current date and time in PHP. Often developers need the date and time for various different purposes. For example,.... Read More

Related Posts