Validate ISIN Using Regular Expressions

Shubham Vora
Updated on 31-Aug-2023 10:05:54

1K+ Views

In this problem, we will use the regular expression to validate the ISIN number in C++. The ISIN stands for the International Securities Identification Number. It is a unique code to identify stocks, financial bonds, etc. The length of the ISIN number can be 12 or 14, which provides international recognization of the particular stuff. Let’s understand the format of the ISIN number. Country code − It starts with two characters of the country code. Identifier − It contains 9 alphanumeric characters after the country code. Checksum − It contains the single digit which is used to detect errors ... Read More

Find Final String by Incrementing Prefixes of Given Length

Shubham Vora
Updated on 31-Aug-2023 09:20:34

159 Views

In this problem, we need to increase each character of multiple prefixes of size given in the array. The naïve approach to solving the problem is to take each prefix of the size given in the array and increment each character of the prefix by 1. The best approach is to create the prefix array using the given array and update each string character in the single iteration. Problem statement − We have given a string alpha of length N. Also, we have given a prefixes array containing the positive integer. The prefixes[i] represent that take prefix of length prefixes[i] ... Read More

Global and Local Variables in Python

Arjun Thakur
Updated on 31-Aug-2023 02:52:46

13K+ Views

There are two types of variables: global variables and local variables. The scope of global variables is the entire program whereas the scope of local variable is limited to the function where it is defined.Example def func(): x = "Python" s = "test" print(x) print(s) s = "Tutorialspoint" print(s) func() print(x) OutputIn above program- x is a local variable whereas s is a global variable, we can access the local variable only within the function it is defined (func() above) and ... Read More

C++ Program to Implement Stack Using Array

Ankith Reddy
Updated on 31-Aug-2023 02:13:46

175K+ Views

A stack is an abstract data structure that contains a collection of elements. Stack implements the LIFO mechanism i.e. the element that is pushed at the end is popped out first. Some of the principle operations in the stack are −Push - This adds a data value to the top of the stack.Pop - This removes the data value on top of the stackPeek - This returns the top data value of the stackA program that implements a stack using array is given as follows.Example#include using namespace std; int stack[100], n=100, top=-1; void push(int val) {    if(top>=n-1)   ... Read More

Center Align Text in Table Cells in HTML

Lokesh Badavath
Updated on 31-Aug-2023 02:10:42

130K+ Views

We use the CSS property text-align, to center align text in table cells. We use inline, internal style sheet for text alignment in table cells. The text-align property of CSS sets the alignment of the content in and . By default, the content of are center-aligned and the content of are left-aligned. We can override the attribute by other to change the alignment. We can also change the align-value to left and right. Syntax Following is the syntax to center align text in tag of the table. Table header... Following is the syntax to center ... Read More

Change Font Size in HTML

Syed Javed
Updated on 31-Aug-2023 02:03:07

133K+ Views

To change the font size in HTML, use the style attribute. The style attribute specifies an inline style for an element. The attribute is used with the HTML tag, with the CSS property font-size. HTML5 do not support the tag, so the CSS style is used to add font size.Just keep in mind, the usage of style attribute overrides any style set globally. It will override any style set in the HTML tag or external style sheet.ExampleYou can try to run the following code to change the font size in an HTML page, Live Demo     ... Read More

Center Text in HTML

Srinivas Gorla
Updated on 31-Aug-2023 01:55:04

144K+ Views

The text in an HTML document can be horizontally centred by using the HTML tag. Since HTML5 did away with this tag, it is advised that you format the document's text horizontally instead by using the CSS text-align property. The element is another name for this tag. Note − Not supported in HTML5 Syntax ... Following are the examples… Example In the following example we are using tag to make our text aligned to the center. DOCTYPE html> Welcome to TutorialsPoint ... Read More

Difference Between Microprocessor and Microcontroller

Kiran Kumar Panigrahi
Updated on 31-Aug-2023 01:46:56

222K+ Views

Both microprocessors and microcontrollers are types electronic devices that come in the form of integrated circuits (ICs) and are used in different modern electronic equipment such as computers, laptops, washing machines, air conditioners, and many other automated electronic gadgets. The primary function of both microprocessors and microcontrollers is to automate the processes. Read this article to find out more about microprocessors and microcontrollers and how they are different from each other. What is a Microprocessor? As its name implies, it is a processing device that converts data into information based on some sets of instructions. It is a very ... Read More

Install Matplotlib in Python

pawandeep
Updated on 31-Aug-2023 01:39:31

177K+ Views

Matplotlib is a Python library that helps to plot graphs. It is used in data visualization and graphical plotting.To use matplotlib, we need to install it.Step 1 − Make sure Python and pip is preinstalled on your systemType the following commands in the command prompt to check is python and pip is installed on your system.To check Pythonpython --versionIf python is successfully installed, the version of python installed on your system will be displayed.To check pippip -VThe version of pip will be displayed, if it is successfully installed on your system.Step 2 − Install MatplotlibMatplotlib can be installed using pip. ... Read More

R for Web Scraping and Data Extraction

Swatantraveer Arya
Updated on 30-Aug-2023 20:26:29

338 Views

Introduction In the world we live in today data has become a very important asset. It is very essential to know how to collect and analyze data from websites that can be used in several applications, such as market research, sentiment analysis, and data-driven decision-making. Without the right and required data, it becomes very hard to take any accurate and important decisions in today’s world. The most common computer language used for statistical calculation and data analysis is R. It offers strong libraries and tools for web scraping and data extraction. In the article that follows, we will examine R's ... Read More

Advertisements