Basic usage example of a JavaScript string object (string), javascriptstring

Source: Internet
Author: User

Basic usage example of a JavaScript string object (string), javascriptstring

This example describes the basic usage of a JavaScript string object (string. We will share this with you for your reference. The details are as follows:

1. Get the length of the string:

var s = "Hello world";document.write("length:"+s.length);

2. Add various styles to the string, such:

var txt = "Some words";document.write("<p>Big: " + txt.big() + "</p>")document.write("<p>Small: " + txt.small() + "</p>")document.write("<p>Bold: " + txt.bold() + "</p>")document.write("<p>Italic: " + txt.italics() + "</p>")document.write("<p>Blink: " + txt.blink() + " (does not work in IE)</p>")document.write("<p>Fixed: " + txt.fixed() + "</p>")document.write("<p>Strike: " + txt.strike() + "</p>")document.write("<p>Fontcolor: " + txt.fontcolor("Red") + "</p>")document.write("<p>Fontsize: " + txt.fontsize(16) + "</p>")document.write("<p>Link: " + txt.link("http://www.bkjia.com") + "</p>")

3. Obtain the first appearance position of some content in the string:

var hw_text = "Hello world";document.write(hw_text.indexOf("Hello")+"<br/>");document.write(hw_text.indexOf("world")+"<br/>");document.write(hw_text.indexOf("abc")+"<br/>");

4. Content replacement:

var str="Visit Microsoft!"document.write(str.replace(/Microsoft/,"W3School"))

:

Sample Code:

<! DOCTYPE html PUBLIC "-// W3C // dtd xhtml 1.0 Transitional // EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.