JavaScript string
Объект JavaScript string используется для обработки текстовых данных.
Новый объект String создается с помощью функции new String().
Синтаксис
var txt = new String(«строка текста»);
или еще проще:
var txt = «строка текста«;
Узнать больше о использовании объекта вы можете в учебнике JavaScript String
Свойства объекта Number
| Свойство | Описание |
|---|---|
| constructor | Возвращает название функции, с помощью которой был создан прототип объекта String |
| length | Возвращает длину текста (строки) |
| prototype | Позволяет добавлять новые свойства и методы объекту String |
Методы объекта Number
| Метод | Описание |
|---|---|
| charAt() | Returns the character at the specified index |
| charCodeAt() | Returns the Unicode of the character at the specified index |
| concat() | Joins two or more strings, and returns a copy of the joined strings |
| fromCharCode() | Converts Unicode values to characters |
| indexOf() | Returns the position of the first found occurrence of a specified value in a string |
| lastIndexOf() | Returns the position of the last found occurrence of a specified value in a string |
| match() | Searches for a match between a regular expression and a string, and returns the matches |
| replace() | Searches for a match between a substring (or regular expression) and a string, and replaces the matched substring with a new substring |
| search() | Searches for a match between a regular expression and a string, and returns the position of the match |
| slice() | Extracts a part of a string and returns a new string |
| split() | Splits a string into an array of substrings |
| substr() | Extracts the characters from a string, beginning at a specified start position, and through the specified number of character |
| substring() | Extracts the characters from a string, between two specified indices |
| toLowerCase() | Converts a string to lowercase letters |
| toUpperCase() | Converts a string to uppercase letters |
| valueOf() | Returns the primitive value of a String object |
Методы обработки html тегов
Методы обработки html тегов возвращают строку, находящуюся внутри соответствующего html тега.
| Метод | Описание |
|---|---|
| anchor() | Creates an anchor |
| big() | Displays a string using a big font |
| blink() | Displays a blinking string |
| bold() | Displays a string in bold |
| fixed() | Displays a string using a fixed-pitch font |
| fontcolor() | Displays a string using a specified color |
| fontsize() | Displays a string using a specified size |
| italics() | Displays a string in italic |
| link() | Displays a string as a hyperlink |
| small() | Displays a string using a small font |
| strike() | Displays a string with a strikethrough |
| sub() | Displays a string as subscript text |
| sup() | Displays a string as superscript text |
Смотрите также:



Комментарии 0