Javascript – Strings

Đối tượng Chuỗi cho phép bạn làm việc với một chuỗi ký tự; nó bao bọc kiểu dữ liệu nguyên thủy chuỗi của Javascript bằng một số phương thức trợ giúp.

Vì JavaScript tự động chuyển đổi giữa các nguyên hàm chuỗi và các đối tượng Chuỗi, nên bạn có thể gọi bất kỳ phương thức trợ giúp nào của đối tượng Chuỗi trên một nguyên hàm chuỗi.

Cú pháp

Sử dụng cú pháp sau để tạo một đối tượng String –

var val = new String(string);

Tham số Chuỗi là một chuỗi các ký tự đã được mã hóa đúng cách.

Thuộc tính String

Sr.No.Property & Description
1constructor Returns a reference to the String function that created the object.
2length Returns the length of the string.
3prototype The prototype property allows you to add properties and methods to an object.

Phương thức String

Sr.No.Method & Description
1charAt() Returns the character at the specified index.
2charCodeAt() Returns a number indicating the Unicode value of the character at the given index.
3concat() Combines the text of two strings and returns a new string.
4indexOf() Returns the index within the calling String object of the first occurrence of the specified value, or -1 if not found.
5lastIndexOf() Returns the index within the calling String object of the last occurrence of the specified value, or -1 if not found.
6localeCompare() Returns a number indicating whether a reference string comes before or after or is the same as the given string in sort order.
7match() Used to match a regular expression against a string.
8replace() Used to find a match between a regular expression and a string, and to replace the matched substring with a new substring.
9search() Executes the search for a match between a regular expression and a specified string.
10slice() Extracts a section of a string and returns a new string.
11split() Splits a String object into an array of strings by separating the string into substrings.
12substr() Returns the characters in a string beginning at the specified location through the specified number of characters.
13substring() Returns the characters in a string between two indexes into the string.
14toLocaleLowerCase() The characters within a string are converted to lower case while respecting the current locale.
15toLocaleUpperCase() The characters within a string are converted to upper case while respecting the current locale.
16toLowerCase() Returns the calling string value converted to lower case.
17toString() Returns a string representing the specified object.
18toUpperCase() Returns the calling string value converted to uppercase.
19valueOf() Returns the primitive value of the specified object.

String HTML Wrappers

Sr.No.Method & Description
1anchor() Creates an HTML anchor that is used as a hypertext target.
2big() Creates a string to be displayed in a big font as if it were in a <big> tag.
3blink() Creates a string to blink as if it were in a <blink> tag.
4bold() Creates a string to be displayed as bold as if it were in a <b> tag.
5fixed() Causes a string to be displayed in fixed-pitch font as if it were in a <tt> tag
6fontcolor() Causes a string to be displayed in the specified color as if it were in a <font color=”color”> tag.
7fontsize() Causes a string to be displayed in the specified font size as if it were in a <font size=”size”> tag.
8italics() Causes a string to be italic, as if it were in an <i> tag.
9link() Creates an HTML hypertext link that requests another URL.
10small() Causes a string to be displayed in a small font, as if it were in a <small> tag.
11strike() Causes a string to be displayed as struck-out text, as if it were in a <strike> tag.
12sub() Causes a string to be displayed as a subscript, as if it were in a <sub> tag
13sup() Causes a string to be displayed as a superscript, as if it were in a <sup> tag