Table of Contents
Use the " " unary operator
grammar
Example
Output
Use Number() constructor
Use parseInt() method
Use parseFlot() method
Home Web Front-end JS Tutorial How to convert string to number in TypeScript?

How to convert string to number in TypeScript?

Aug 27, 2023 pm 02:01 PM

如何在 TypeScript 中将字符串转换为数字?

Strings and numbers are primitive data types in TypeScript. Sometimes, we get a number in string format and we need to convert the string value to a number to perform mathematical operations on the value. If we perform mathematical operations on string values, it gives strange results. For example, adding another numeric value to a numeric string appends the numbers to the string rather than adding them.

We will learn to use various methods and approaches in TypeScript to convert strings into numeric values.

So, we need to convert string to number in TypeScript.

Use the " " unary operator

Unary operators take a single operand. It converts the operands into numeric values ​​before evaluating them. So we can use it to convert string to numeric value.

grammar

Users can follow the following syntax to convert strings into numeric values.

let numberValue: number = +stringNmber;
Copy after login

In the above syntax, we use the stringNumber variable as the operand of the unary " " operator.

Example

In this example, the stringNumber variable contains a numeric value in string format. After that, we convert the stringNumber string value into a number using the unary ‘ ‘ operator and store the calculated value in the numberValue variable.

In the output, the user can observe that the type of numberValue variable is number.

let stringNmber: string = "124354656";
let numberValue: number = +stringNmber;

console.log("The type of numberValue variable is " + typeof numberValue);
console.log("The value of the numberValue variable is " + numberValue);
Copy after login

When compiled, it will generate the following JavaScript code -

var stringNmber = "124354656";
var numberValue = +stringNmber;

console.log("The type of numberValue variable is " + typeof numberValue);
console.log("The value of the numberValue variable is " + numberValue);
Copy after login

Output

The above code will produce the following output -

The type of numberValue variable is number
The value of the numberValue variable is 124354656
Copy after login

Use Number() constructor

Number is an object in TypeScript, and we can use it as a constructor to create instances of Number objects.

We can pass a numeric value as Nuber() constructor parameter in numeric or string format.

grammar

Users can use the Number() constructor according to the following syntax to convert a string into a numeric value.

let num: number = Number(str);
Copy after login

In the above syntax, we pass the number value in string format as the parameter of the Number() constructor.

Example

In this example, we created string1 and string2 variables, which contain numeric values ​​in string format. After that, we convert these two variables into numbers using Number() constructor and store them in number1 and number2 variables.

After converting a string value to a number, the user can observe its type in the output.

let string1: string = "35161";
let string2: string = "65986132302";

let number1: number = Number(string1);
let number2: number = Number(string2);

console.log("The value of number1 is " + number1);
console.log("The type of number1 is " + typeof number1);

console.log("The value of number2 is " + number2);
console.log("The type of number2 is " + typeof number2);
Copy after login

When compiled, it will generate the following JavaScript code -

var string1 = "35161";
var string2 = "65986132302";
var number1 = Number(string1);
var number2 = Number(string2);

console.log("The value of number1 is " + number1);
console.log("The type of number1 is " + typeof number1);
console.log("The value of number2 is " + number2);
console.log("The type of number2 is " + typeof number2);
Copy after login

Output

The above code will produce the following output -

The value of number1 is 35161
The type of number1 is number

The value of number2 is 65986132302
The type of number2 is number
Copy after login

Use parseInt() method

TypeScript's parseInt() method extracts an integer value from a number string or the number itself, and removes the decimal part of the number.

grammar

Users can use the parseInt() method in TypeScript to convert strings to numbers according to the following syntax.

let num: number = parseInt(str);
Copy after login

In the above syntax, we pass the numeric value in string format as parseInt() method parameter.

Example

In the following example, the convertNumToString() function converts a string to a number and returns a numeric value. In the function, we have used the parseInt() method to extract the number from the string.

We call the convertNumToString() function twice by passing different numbers in string format as parameters and the user can observe the converted numeric value in the output.

let stringNumber: string = "12234567998";
let stringNumber2: string = "34345465.4333";

function convertNumToString(str: string) {
  let num: number = parseInt(str);
  return num;
}

console.log(
  "After converting the " +
    stringNumber +
    " to number value is " +
    convertNumToString(stringNumber)
);

console.log(
  "After converting the " +
    stringNumber2 +
    " to number value is " +
    convertNumToString(stringNumber2)
);
Copy after login

When compiled, it will generate the following JavaScript code -

var stringNumber = "12234567998";
var stringNumber2 = "34345465.4333";
function convertNumToString(str) {
   var num = parseInt(str);
   return num;
}
console.log("After converting the " +
   stringNumber +
   " to number value is " +
   convertNumToString(stringNumber));
console.log("After converting the " +
   stringNumber2 +
   " to number value is " +
   convertNumToString(stringNumber2));
Copy after login

Output

The above code will produce the following output -

After converting the 12234567998 to number value is 12234567998
After converting the 34345465.4333 to number value is 34345465
Copy after login

Use parseFlot() method

The parseFloat() method performs the same job as the parseInt() method, converting a string to a number. The only difference is that it does not remove the values ​​after the decimal point, which means it extracts floating point values ​​from strings, while parseInt() method extracts integer values ​​from strings.

grammar

Users can use the parseFloat() method according to the following syntax to convert strings to numbers.

let numberValue: number = parseFloat(stringValue);
Copy after login

In the above syntax, stringValue is a floating point number in string format.

Example

In the following example, the stringToFloat() function demonstrates how to use the parseFloat() method to extract a floating point value from a given string. We have called the stringToFloat() function three times.

On the third call to the stringToFloat() function, we pass it a string with numbers and other characters as parameters. In the output, we can see that it removes characters from the string and extracts only floating point values.

let strFloat: string = "34356757";
let strFloat2: string = "7867.465546";

function stringToFloat(stringValue: string) {
  let numberValue: number = parseFloat(stringValue);
  console.log(
    "The " +
      stringValue +
      " value after converting to the number is " +
      numberValue
  );
}

stringToFloat(strFloat);
stringToFloat(strFloat2);
stringToFloat("232343.43434fd");
Copy after login

When compiled, it will generate the following JavaScript code -

var strFloat = "34356757";
var strFloat2 = "7867.465546";
function stringToFloat(stringValue) {
    var numberValue = parseFloat(stringValue);
    console.log("The " +
        stringValue +
        " value after converting to the number is " +
        numberValue);
}
stringToFloat(strFloat);
stringToFloat(strFloat2);
stringToFloat("232343.43434fd");
Copy after login

Output

The above code will produce the following output -

The 34356757 value after converting to the number is 34356757
The 7867.465546 value after converting to the number is 7867.465546
The 232343.43434fd value after converting to the number is 232343.43434
Copy after login

In this tutorial, the user learned four ways to convert a numeric value given in string format into an actual number. The best way to convert a string to a number is to use unary operators, which are less time consuming than other operators. However, users can also use the Number() constructor.

The above is the detailed content of How to convert string to number in TypeScript?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Replace String Characters in JavaScript Replace String Characters in JavaScript Mar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

8 Stunning jQuery Page Layout Plugins 8 Stunning jQuery Page Layout Plugins Mar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Build Your Own AJAX Web Applications Build Your Own AJAX Web Applications Mar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 Mobile Cheat Sheets for Mobile Development 10 Mobile Cheat Sheets for Mobile Development Mar 05, 2025 am 12:43 AM

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

Improve Your jQuery Knowledge with the Source Viewer Improve Your jQuery Knowledge with the Source Viewer Mar 05, 2025 am 12:54 AM

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 jQuery Fun and Games Plugins 10 jQuery Fun and Games Plugins Mar 08, 2025 am 12:42 AM

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

How do I create and publish my own JavaScript libraries? How do I create and publish my own JavaScript libraries? Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

jQuery Parallax Tutorial - Animated Header Background jQuery Parallax Tutorial - Animated Header Background Mar 08, 2025 am 12:39 AM

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

See all articles