lowercase – POFTUT

Javascript Regular Expression Operation

Regular expression is the language to define specific pattern for text data. Javascript supports regular expression. Regular expression is generally used like below. We will look different type of usage examples of regular expression. var str = “This is an example about regex for poftut.com”; var re = new RegExp( “poftut”, “g” ); var result … Read more

Javascript String Variable Types

While developing Javascript applications we generally need some type that can hold text and string data. We call this type of variable as a string. The string can hold names, street info, paragraph, explanation, etc. The string is the type used for text data. String variables can be defined in various ways. name=”Poftut”; name2=’Poftut’; These … Read more

Python String Variable Type

The string is a type used to hold text data in Python programming language. We can hold name, surname, address, text or similar data in strings. There are different functions that can be used with these string data. In this tutorial, we will look at them in detail. Define String Variable Defining string is easy … Read more