zoukankan      html  css  js  c++  java
  • string::find()关键字符串定位

     语法: 

    1 1.size_type source_str.find( const basic_string &str, size_type index );
    2 2.size_type  source_str.find( const char *str, size_type index );
    3 3.size_type  source_str.find( const char *str, size_type index, size_type length );
    4 4.size_type  source_str.find( char ch, size_type index );

    1、2.返回str在字符串source_str中第一次出现的位置(从index开始查找)。如果没找到则返回string::npos,

    3.返回str在字符串source_str中第一次出现的位置(从index开始查找,长度为length)。如果没找到就返回string::npos,

    4.返回字符ch在字符串source_str中第一次出现的位置(从index开始查找)。如果没找到就返回string::npos

  • 相关阅读:
    20、【Linux系统编程】 exec系列函数
    3、【Linux网络编程】socket实例
    c++ 二分答案(基础应用)
    c++ 迷宫搜索(宽搜)
    c++ 广度优先搜索(宽搜)
    栈的概念
    c++ 栈的基本应用
    队列的概念
    c++ 队列的基本应用
    Knight Moves
  • 原文地址:https://www.cnblogs.com/kevinGaoblog/p/2461510.html
Copyright © 2011-2022 走看看