1. String conversion
String conversion is the most basic requirement and work. You can convert any type of data into a string. You can use any of the following three methods:
var num= 19; // 19 var myStr = num.toString; // "19"
You are the same You can do this:
var num= 19; // 19 var myStr = String(num); // "19"
Or, even simpler:
2. String splitting
String splitting is to split a string into multiple strings. JavaScript provides us with a very convenient function , such as: The second parameter of
var myStr = "I,Love,You,Do,you,love,me"; var substrArray = myStr .split(","); // ["I", "Love", "You", "Do", "you", "love", "me"]; var arrayLimited = myStr .split(",", 3); // ["I", "Love", "You"];
split represents the maximum length of the returned string array.
3. Get the string length
The string length is often used in development. It is very simple as follows:
var myStr = "I,Love,You,Do,you,love,me"; var myStrLength = myStr.length; //25
4. Query substring
Many people will forget these JavaScripts. methods, or forget their specific usage, resulting in having to nest a for loop when doing the questions.
The first function: indexOf, it searches from the beginning of the string and returns the corresponding coordinates if it is found. If it is not found, it returns -1. As follows:
var myStr = "I,Love,you,Do,you,love,me"; var index = myStr.indexOf("you"); // 7 ,基于0开始,找不到返回-1
The second function: lastIndexOf, it searches from the end of the string and returns the corresponding coordinates if found. If not found, it returns -1. As follows:
var myStr = "I,Love,you,Do,you,love,me"; var index = myStr.lastIndexOf("you"); // 14
The above two functions also receive a second optional parameter, indicating the starting position of the search.
5. String replacement
Just finding the string should not stop. In general questions, you will often be asked to find and replace it with your own string, for example:
var myStr = "I,love,you,Do,you,love,me"; var replacedStr = myStr.replace("love","hate");//"I,hate,you,Do,you,love,me"
The default is to only replace If you want to replace it globally when you find it for the first time, you need to put a regular global identifier, such as:
var myStr = "I,love,you,Do,you,love,me"; var replacedStr = myStr.replace(/love/g,"hate");//"I,hate,you,Do,you,hate,me"
For more details, please refer to: http://www.w3school.com.cn/jsref/jsref_replace.asp
6. Find the character at a given position or its character encoding value
To find the character at a given position, you can use the following function:
var myStr = "I,love,you,Do,you,love,me"; var theChar = myStr.charAt(8);// "o",同样从0开始
Similarly, one of its sibling functions is to find the character encoding at the corresponding position Value, such as:
var myStr = "I,love,you,Do,you,love,me"; var theChar = myStr.charCodeAt(8); //111
7. String connection
The string connection operation can be as simple as using an addition operator, such as:
var str1 = "I,love,you!"; var str2 = "Do,you,love,me?"; var str = str1 + str2 + "Yes!";//"I,love,you!Do,you,love,me?Yes!"
Similarly, JavaScript also comes with related functions, such as:
var str1 = "I,love,you!"; var str2 = "Do,you,love,me?"; var str = str1.concat(str2);//"I,love,you!Do,you,love,me?"
The concat function can have multiple parameters, pass multiple strings, and splice multiple strings.
8. String cutting and extraction
There are three ways to extract and cut from strings, such as:
The first one, use splice:
var myStr = "I,love,you,Do,you,love,me"; var subStr = myStr.slice(1,5);//",lov"
The second one, use substring:
var myStr = "I,love,you,Do,you,love,me"; var subStr = myStr.substring(1,5); //",lov"
The third method is to use substr:
var myStr = "I,love,you,Do,you,love,me"; var subStr = myStr.substr(1,5); //",love"
. The difference from the first and second methods is that the second parameter of substr represents the maximum length of the intercepted string, as shown in the above results.
9. String case conversion
Commonly used functions for converting to uppercase or lowercase strings are as follows:
var myStr = "I,love,you,Do,you,love,me"; var lowCaseStr = myStr.toLowerCase; //"i,love,you,do,you,love,me"; var upCaseStr = myStr.toUpperCase;//"I,LOVE,YOU,DO,YOU,LOVE,ME"
10. String matching
String matching may require you to have a certain understanding of regular expressions. Let’s take a look at the match function first:
var myStr = "I,love,you,Do,you,love,me"; var pattern = /love/; var result = myStr.match(pattern); //["love"] console.log(result .index);//2 console.log(result.input );//I,love,you,Do,you,love,me
As you can see, the match function is called on a string and accepts a regular parameter. Let’s take a look at the second example, using the exec function:
var myStr = "I,love,you,Do,you,love,me"; var pattern = /love/; var result = pattern .exec(myStr); //["love"] console.log(result .index);//2 console.log(result.input );//I,love,you,Do,you,love,me
It’s simple. It just changes the position of the regular expression and the string. That is, the exec function is called on the regular expression and passes the parameters of the string. For the above two methods, the matching result is to return the first successfully matched string. If the match fails, null is returned.
Let’s look at a similar method search, such as:
var myStr = "I,love,you,Do,you,love,me"; var pattern = /love/; var result = myStr.search(pattern);//2
Only return the found matching string Subscript, if the match fails, -1 is returned.
11. String comparison
Compare two strings. The comparison rule is to compare in alphabetical order, such as:
var myStr = "chicken"; var myStrTwo = "egg"; var first = myStr.localeCompare(myStrTwo); // -1 first = myStr.localeCompare("chicken"); // 0 first = myStr.localeCompare("apple"); // 1
12. Example
Finally we Let’s take a look at a front-end written test question from Qunar.com. I believe many children have done this question. Question: Write a getSuffix function to obtain the suffix name of the input parameter. For example, enter abcd.txt and return txt. Attached is my answer:
function getSuffix(file){ return file.slice(file.lastIndexOf(".") + 1,file.length); }
Conclusion
I believe there should be more than these string manipulation functions in JavaScript, but the ones listed above should all be very commonly used. If there is anything you need to add, please feel free to add it! I hope that after seeing this, you will be able to face the string written interview questions very calmly.

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

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

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

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

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

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

本篇文章给大家带来了关于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

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

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.

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),
