C # indexOf method in array,

Source: Internet
Author: User

C # indexOf method in array,
Var array = ['reg ', '123', '123'];

Array. indexOf ('reg ') // 0

Array. indexOf ('R') //-1

Array. indexOf ('000000') // 1

Array. indexOf (2018) //-1

  • Arr. indexOf ('Orange ') outputs 0 because 'Orange' is the 0th element of the array, matches and returns a subscript.
  • Arr. indexOf ('O') Output-1 because this method will not re-Execute indexOf matching on the basis of each element.
  • Arr. indexOf ('200') Outputs 1 because this method matches the table from the ground up until the first array element is matched, instead of returning all matched subscript.
  • Arr. indexOf (2016) Output-1 Note: implicit type conversion is not performed here.

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.