Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Articles on Trending Technologies
Technical articles with clear explanations and examples
How to Convert Text in Text Box to Cell Content in Excel?
When we have data in text boxes in Excel and need to manually extract the data from the box, it can be a time-consuming process. We can’t perform any operations on the dates if they are in a text box, as they are treated as comments. Read this tutorial to learn how you can convert text in a textbox to cell content in Excel. We can complete the process using the VBA application, as it can't be completed directly in Excel. Converting Text in Text Box to Cell Content in Excel Here we will first insert the VBA module then ...
Read MoreHow to validate Octal number in ReactJS?
There are various types of number representation available such as decimal, hexadecimal, binary, octal, etc. The octal number is a number value by taking the base-8, and it accepts only numbers between 0 to 8. Here, we will learn to validate the octal number. We need to check that all characters of the octal number string should be numeric and between 1 to 8. Use the regular expression to validate octal number in ReactJS The best approach to validate the octal number is using the regular expression. We can use the test() method with the regular expression to ensure ...
Read MoreHow to validate a credit card number in ReactJS?
When a bank issue any credit or debit card number, they don’t generate the random numbers for the card. They follow some rules to issue a new card number. They first validate the card number using the Luhn algorithm and check if it starts with a particular number. Here, we will learn different approaches to validating credit card numbers. Use the React Creditcard Validator NPM Package The react creditcard validator is an NPM package, allowing us to validate the card number. Whenever a user enters the credit card number, It checks which type of card it is. For ...
Read MoreHow to Convert Text Datetime Format to Real Datetime Format in Excel?
Sometimes in Excel, you can see that the date and time are given in the form of strings, and you will not be able to perform operations related to data and time with those values. So, it is very important for us to convert these kinds of formats into the correct format. If we try to do this manually, it can be time-consuming and sometimes inaccurate. We can complete this task using the formulas to get more accurate results and save a lot of time. Read this tutorial to learn how you can convert text date and time formats to ...
Read MoreHow to Convert Temperature Units between Celsius, Kelvin and Fahrenheit in Excel?
The degree of hotness or coldness of any object is known as its temperature. Generally, temperature can be measured on these scales: Celsius, Kelvin, and Fahrenheit. Different people will measure temperature on different scales. So, changing the scale of temperature can be used frequently when dealing with temperatures. Read this tutorial to learn how you can convert temperature units between Celsius, Kelvin, and Fahrenheit in Excel, i.e., changing the values from Celsius to kelvin or Fahrenheit and vice versa. We can solve this process by using formulas supported by Excel. Converting Temperature Units between Celsius, Kelvin and Fahrenheit in Excel ...
Read MoreHow to Convert Seconds to Time (hh mm ss) or Vice Versa in Excel?
The data in the sheet can be very confusing if it is presented in seconds, and the value will be so large that you won't be able to perform any operations on it. A second typically corresponds to 1/3600 of an hour. We can use this method to determine the duration in seconds. You can learn how to convert seconds to time in Excel from the information provided in this tutorial. In this tutorial, we'll try to use the formulas to convert seconds to duration. Although a direct formula is not yet available, we can create one by simply comprehending ...
Read MoreHow to Convert Scientific Notation to Text or Number in Excel?
Generally, a scientific notation will have more than 12 values in it, and if we try to enter any value that has more than 11 digits, it will automatically convert into a short form. We can solve this problem by following some simple tricks. Read this tutorial to learn how you can convert scientific notation to text or a number in Excel. This problem can be solved in three ways: first, with a single quote; second, with formatting; and third, with the trim function. Converting Scientific Notation to Text Using Single Quote Here we will insert a single quote before ...
Read MoreHow to use TextField Component in Material UI?
The Material UI library provides various react components, and TextField is one of them. We can use the TextField component to take user input and use it inside the form. Whatever operation we can perform with the HTML input field, we can also perform with the TextField component. For example, we can use events and attributes with the TextField component, which we can use with the normal input field component. The main benefit of using the TextField component is its well-designed design. Users can execute the below command in the project directory to install the Material UI library. npm ...
Read MoreHow to Convert a Range to a Table or Vice Versa in Excel?
There are many special features in Excel that are only available in tables and can't be applied to normal ranges of data. Operations like sorting and inserting are some of the simplest processes in case of tables. Sometimes, we need to convert a range of data to a table to access those features. Read this tutorial to learn how you can convert a range of data to a table and a table to a range of data in Excel. It is a very simple process. A table will also help us understand our data in a more precise and faster ...
Read MoreHow to use Slider Component in Material UI?
The slider is an important feature for any application to improve the UX of the application. For example, if you want to allow users to choose any value between 1 to 100, it would be better to use the slider than the custom number input field. The Material UI provides the pre-designed Slider component. Also, it contains the different variants of the Slider component. We can pass the props to the Slider component to custom it Execute the below command in the project directory to install the Material UI in the React application. npm i @mui/material @emotion/react @emotion/style ...
Read More