Remove URL from a string in C++

By Neeraj Dusa

In this tutorial, one can get to know how to use regular expression and how to use it for removing a URL from a given string in C++. Regular Expressions Regular Expressions are a .... Read More

Detect URL in a string in C++

By Neeraj Dusa

In this tutorial, one can get to know how to use regular expression and how to use it for detecting a URL in a given string in C++. Regular Expressions Regular Expressions are a s.... Read More

How to create an Integer Type Array in Swift

By Saruque Ahamed Mollick

In this tutorial, we will learn how easily we can create an Integer type Array in Swift programming. This is a very basic tutorial on creating an  Int array. I have used Xcode to .... Read More

How to transpose a list of lists in Python

By Paras Saini

In this post, I’ll explain to you how you can transpose a list of lists in Python. Transpose Before going deeper let me first explain about transpose so transpose is define.... Read More

Printing Lists as Tabular Data in Python

By Paras Saini

In this post, I will explain to you how you can Print a List as Tabular Data in Python language. To know about list refer to the post Python List and Basic Python Set method or ht.... Read More

Trim a string in Python

By Paras Saini

In this tutorial, I’ll explain to you how you can trim a String in Python. String in Python: As you already know that it’s an easy task to work with string in Python..... Read More

Pythagorean Theorem in Python calc: find a, b=n/a, c=n/a

By Vikram Negi

In this tutorial, We’ll discuss how you can calculate the side of any right angle triangle using Pythagorean Theorem in Python. Before that, let’s get quick look at Pythago.... Read More

How to trim a string in C++

By Neeraj Dusa

In this tutorial, we will discuss how to trim leading and trailing white spaces from a string in C++ Trim string with built-in methods in C++ We use inbuilt “find_first_not_o.... Read More

Related Posts