JS Substr read a string part of the content

Source: Internet
Author: User
Tags php tutorial

The substr () function returns part of the string.

Grammar
SUBSTR (String,start,length)
The arg2 of the method and the arg2 of the other two methods simply represent different meanings, so they are singled out.

When arg1<0, the results of different browsers are different. IE directly change the arg1 to 0, and the Chrome subscript reads from left to right to read from right to left

<?php Tutorial
echo substr ("Hello world!", 6);
?> output:

world! Example 2
<?php
echo substr ("Hello world!", 6,5);
?> output:

World


Parameters

String

String type.

Start

A positive integer that specifies the start position in string. The position of the first character in the string is 1.

Length

A positive integer that specifies the length of the character to search for in string. If length is not specified, the substring continues to the end of the string.

Note the ordinal number of the first character in string is 1, unlike other functions that handle table elements, such as Nth and ssname: They treat the ordinal number of the first element as 0.

return value

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.