The methods of JavaScript string objects are: anchor(), big(), blink(), bold(), charAt(), concat(), fixed(), indexOf(), lastIndexOf(), replace(), search(), etc.
The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.
JavaScript String object is used to process strings, which provides a large number of methods for manipulating strings, as well as some properties.
The syntax format for creating a String object is as follows:
var val = new String(value); var val = String(value);
The parameter value is the string or string object to be created.
In JavaScript, strings and string objects can be converted freely, so whether you are creating a string object or directly declaring a variable of string type, you can directly use the methods and properties provided in the string object. .
Methods of JavaScript string objects
The following table lists the methods and description information provided in the String object:
Method | Description |
---|---|
anchor() | Creates an HTML anchor, that is, generates a <a> </a> Label, the name attribute of the label is the parameter in the anchor() method |
Display the string in large font | |
Display the flashing string | |
Use bold to display the string | |
Returns the character at the specified position | |
Returns the specified character Unicode encoding | |
Concatenate strings | |
to typewriter Text display string | |
Use the specified color to display the string | |
Use the specified size to display the string | |
Convert the character encoding to a string | |
Retrieve a string and get the position where the given string first appears in the string object | |
Use italics to display the string | |
Get the last occurrence position of the given string in the string object | |
Display a string as a link | |
Returns a number and uses that number to represent the character Whether the string object is greater than, less than, or equal to the given string | |
Match characters in the string according to the regular expression | |
Replace the substring matching the regular expression | |
Get the substring matching the regular expression The position where the matching string first appears | |
Intercepts the fragment of the string and returns it | |
Use small font size to display the string | |
Split the string into a string array based on the given characters | |
Use strikethrough to display string | |
The string is displayed as a subscript | |
Intercept the string of the specified length from the specified index position | |
Intercept the characters between two specified indexes in the string | |
Display the string as a superscript | |
Convert the string to lowercase | |
Convert the string Convert to uppercase | |
Convert the string to lowercase | |
Convert the string to uppercase | |
Return the string | |
Return the original value of a string object |
var str = new String('JavaScript教程'); document.write(str.anchor("myanchor") + "<br>"); // 生成一段 HTML 代码:<a name="myanchor">JavaScript教程</a> document.write(str.big() + "<br>"); // 生成一段 HTML 代码:<big>JavaScript教程</big> document.write(str.blink() + "<br>"); // 生成一段 HTML 代码:<blink>JavaScript教程</blink> document.write(str.bold() + "<br>"); // 生成一段 HTML 代码:<b>JavaScript教程</b> document.write(str.charAt(10) + "<br>"); // 获取 str 中的第 11 个字符,输出:教 document.write(str.charCodeAt(10) + "<br>"); // 获取 str 中第 11 个字符的 Unicode 编码,输出:25945 document.write(str.concat(" String 对象") + "<br>"); // 将字符串“ String 对象”拼接到字符串 str 之后,输出:JavaScript教程 String 对象 document.write(str.fixed() + "<br>"); // 生成一段 HTML 代码:<tt>JavaScript教程</tt> document.write(str.fontcolor("red") + "<br>"); // 生成一段 HTML 代码:<font color="red">JavaScript教程</font> document.write(str.fontsize(2) + "<br>"); // 生成一段 HTML 代码:<font size="2">JavaScript教程</font> document.write(String.fromCharCode(72,69,76,76,79) + "<br>"); // 将 Unicode 编码转换为具体的字符,输出:HELLO document.write(str.indexOf("Script") + "<br>"); // 获取字符串“Script”在 str 中首次出现的为,输出:4 document.write(str.italics() + "<br>"); // 生成一段 HTML 代码:<i>JavaScript教程</i> document.write(str.lastIndexOf("a") + "<br>"); // 获取字符串“a”在 str 中最后一次出现的位置,输出 3 document.write(str.link("http://c.biancheng.net/") + "<br>"); // 生成一段 HTML 代码:<a href="http://c.biancheng.net/">JavaScript教程</a> document.write(str.localeCompare("JavaScript") + "<br>"); // 比较字符串对象与给定字符串,返回:1 document.write(str.match(/[abc]/g) + "<br>"); // 根据正则 /[abc]/g 检索 str,返回:a,a,c document.write(str.replace(/[abc]/g, "Y") + "<br>"); // 使用字符串“Y”替换正则 /[abc]/g 匹配的字符,返回:JYvYSYript教程 document.write(str.search(/[Script]/g) + "<br>"); // 获取与正则匹配的字符串首次出现的位置,返回:4 document.write(str.slice(6,11) + "<br>"); // 截取字符串(获取 str 中第 7 到第 11 个字符),返回:ript教 document.write(str.small() + "<br>"); // 生成一段 HTML 代码:<small>JavaScript教程</small> document.write(str.split("a") + "<br>"); // 根据“a”将字符串 str 拆分为数组,返回:J,v,Script教程 document.write(str.strike() + "<br>"); // 生成一段 HTML 代码:<strike>JavaScript教程</strike> document.write(str.sub() + "<br>"); // 生成一段 HTML 代码:<sub>JavaScript教程</sub> document.write(str.substr(3, 7) + "<br>"); // 从第 4 个字符开始,向后截取 7 个字符,返回:aScript document.write(str.substring(3, 7) + "<br>"); // 截取字符串(获取 str 中第 4 到第 7 个字符),返回:aScr document.write(str.sup() + "<br>"); // 生成一段 HTML 代码:<sup>JavaScript教程</sup> document.write(str.toLocaleLowerCase() + "<br>"); // 返回:javascript教程 document.write(str.toLocaleUpperCase() + "<br>"); // 返回:JAVASCRIPT教程 document.write(str.toLowerCase() + "<br>"); // 返回:javascript教程 document.write(str.toUpperCase() + "<br>"); // 返回:JAVASCRIPT教程 document.write(str.toString() + "<br>"); // 返回:JavaScript教程 document.write(str.valueOf() + "<br>"); // 返回:JavaScript教程
[Related recommendations:
javascript learning tutorialThe above is the detailed content of What are the methods of JavaScript string objects?. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


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

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
