JavaScript has the following data type conversion methods:
One, convert it into a number xxx*1.0
Convert it into a string xxx ""
Two, extract one value from another A type of value and conversion is done.
. Extract the integer from the string: parseInt();
Example: the result of parseInt("123zhang") is 123
. Extract the floating point number from the string: parseFloat();
Example: The result of parseFloat("0.55zhang") is 0.55
. Execute a piece of javascript code represented by a string: eval();
Example: The result of zhang=eval("1 1") is zhang =2
. Convert to string: toString();
Example: the result of zhang=eval("1 1") zhang=2
three is to convert the entire value from one type Convert to another data type (called basic data type conversion),
Three methods of basic data type conversion:
. Convert to character type: String(); Example: String(678) The result of Number("678") is "678"
. Convert to numeric type: Number(); Example: The result of Number("678") is 678
. Convert to Boolean type: Boolean(); Example: Boolean("aaa ") is true
When using these methods, if necessary, try to judge and handle exceptions on the execution of parameters and methods.
As seen in the reference document, the following is a summary of execution efficiency:
Under IE, the first method is the fastest, the second is the second, and the third is the worst, but the difference is only 100,000 times. , the difference is only tens of hundreds of milliseconds.
Under FF, the first and second types are basically equivalent, and the third type is the slowest.
The speed difference is basically negligible. Because the difference is very small.
However, from the simplicity of the code, the first method is obviously simple to write and easy to read.
And there will be no error in the second method because an object does not have a toString method. Besides, he was always the fastest.
So, I am accustomed to using the first method to complete data type conversion.
However, if you need "123456abcd" to extract the numbers in it, then you should naturally use functions such as parsetInt and parseFloat.
But please note that sometimes the conversion result is NaN, etc., so you need to judge.
Example exception handling:
/ /Execute the statement in the text box and use eval to return the value after the statement is executed
function doFunction(str) {
var result = str.replace(new RegExp(""", "gm"), "");
//Determine whether the statement is legal
var reg = /s*[A-Za-z] s*('. ')s*$/;
if (result.match( reg)) // Or use the reg.test(result); method to determine
try {
result = eval(result);
return result;
}
catch (Error) {
alert("Sorry! The statement cannot be converted. Pay attention to grammar and spelling.");
return;
}
else alert("Please check the format and syntax of the data type conversion statement!");
}
Other test examples on data conversion methods are as follows:
例 句 | 结 果 |
---|---|
parseInt('1234') | 1234 |
parseInt('1234.00') | 1234 |
parseInt('1234abc') | 1234 |
parseInt('abc1234') | undefined(转换失败) |
parseFloat('1234.123') | 1234.123 |
parseFloat('1234.123a') | 1234.123 |
parseFloat('a1234.123') | NaN |
Number('1234.123') | 1234.123 |
Number('1234.123aa') | NaN |
String(eval('12 10')) | 22 |
Boolean('0'),Boolean('567'),Boolean(567) | true |
Boolean(null),Boolean(false),Boolean(0),Boolean(''),Boolean() | false |
this.toString() | [object] |
(typeof(this)).toString() | object |
eval('12 34') | 46 |
eval('12 34') '' | 46 |
eval('12 34')*1.0 | 46 |
typeof(eval('12 34')*1.0) | number |
typeof(eval('12 34') '') | string |
Note: The environment during the test is vs2008, ie8..., which is the statement entered on the page. Use eval in js to process the conversion example sentence in the left column of the above table.
You may need to modify symbols, etc. when using it.

在Vue中,v-model是用来实现双向绑定的一个重要指令,它可以让我们很方便地将用户输入的内容同步到Vue的data属性中。但是在一些情况下,我们需要对数据进行转换,比如将用户输入的字符串类型转换成数字类型,这时候就需要使用v-model的.number修饰符来实现。v-model.number的基本用法v-model.number是v-model的一个修

如何使用MySQL中的CONVERT函数进行数据类型转换在MySQL数据库中,CONVERT函数是一个非常实用的函数,它可以用来进行数据类型的转换。通过使用CONVERT函数,我们可以将一个数据类型转换为另一个数据类型,这在处理不同数据类型的数据时非常有用。本文将介绍如何使用CONVERT函数进行数据类型转换,并提供一些实际的代码示例。一、数据类型转换的需求

如何使用MySQL在TypeScript中实现数据类型转换功能引言:在开发Web应用程序时,数据类型转换是一个非常常见的需求。在处理数据库中存储的数据时,特别是使用MySQL作为后端数据库时,我们经常需要将查询结果中的数据按照我们所需的类型进行转换。本文将介绍如何在TypeScript中利用MySQL实现数据类型转换的功能,并提供代码示例。一、准备工作:在开

利用MongoDB技术开发中遇到的数据类型转换问题的解决方案探究摘要:在使用MongoDB进行数据开发时,经常会遇到数据类型之间的转换问题。本文将探究在开发过程中常见的数据类型转换问题,并提供相应的解决方案。文章将结合代码示例,介绍如何利用MongoDB的内置函数和操作符来处理数据类型转换。引言在数据开发过程中,数据类型转换是一个常见且重要的问题。不同的数据

PHP8数据类型转换:高效转换方法和案例分享导语:数据类型转换在编程中是非常常见的操作,特别是在处理用户输入、数据存储和输出等场景中。在PHP8中,数据类型转换的操作更加高效和灵活。本文将介绍PHP8中常用的数据类型转换方法,并通过具体的代码示例来展示其实际应用。基本的数据类型转换1.1字符串到整型的转换在PHP8中,可以使用(int)、intval()、

MySQL是目前应用广泛的开源关系型数据库,它支持多种数据类型,包括整数、字符串、日期时间等等。在实际应用中,我们经常需要对不同数据类型进行转换,以满足各种需求。本文将分享MySQL中的数据类型转换方法,包括隐式转换和显式转换。一、隐式转换MySQL中的大部分数据类型都可以进行隐式转换,即在运算时自动转换为合适的类型。下面我们通过实例来演示一下:转换日期型数

随着Java的广泛使用,开发人员经常遇到一些常见的错误,其中之一是“错误的数据类型(Typemismatcherror)”。这种错误可能发生在变量赋值、方法参数传递或函数返回值不符合预期数据类型的情况下。这篇文章将介绍Java中错误的数据类型,以及如何解决和避免这种错误。一、错误的数据类型在Java中,每个变量都有特定的数据类型,如整数类型int、浮点类

PHP8数据类型转换:简明指南和常见问题解答概述:在PHP开发中,我们经常需要进行数据类型之间的转换。PHP8为我们提供了许多方便的数据类型转换方法,能够轻松地在不同数据类型之间进行转换,有效地处理数据。本文将为您提供一个简明指南和常见问题解答,涵盖了PHP8中常用的数据类型转换方法和示例代码。字符串转整数在处理用户输入、数据库查询等情景中,我们经常需要将字


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
