find
int find(
char c,
int pos =
0)
const;
int find(
const char *s,
int pos =
0)
const;
int find(
const char *s,
int pos,
int n)
const;
int find(
const string &s,
int pos =
0)
const;
rfind
int rfind(
char c,
int pos = npos)
const;
int rfind(
const char *s,
int pos = npos)
const;
int rfind(
const char *s,
int pos,
int n = npos)
const;
int rfind(
const string &s,
int pos = npos)
const;
find_first_of
int find_first_of(
char c,
int pos =
0)
const;
int find_first_of(
const char *s,
int pos =
0)
const;
int find_first_of(
const char *s,
int pos,
int n)
const;
int find_first_of(
const string &s,
int pos =
0)
const;
find_first_not_of
int find_first_not_of(
char c,
int pos =
0)
const;
int find_first_not_of(
const char *s,
int pos =
0)
const;
int find_first_not_of(
const char *s,
int pos,
int n)
const;
int find_first_not_of(
const string &s,
int pos =
0)
const;
find_last_of
int find_last_of(
char c,
int pos = npos)
const;
int find_last_of(
const char *s,
int pos = npos)
const;
int find_last_of(
const char *s,
int pos,
int n = npos)
const;
int find_last_of(
const string &s,
int pos = npos)
const;
int find_last_not_of(
char c,
int pos = npos)
const;
int find_last_not_of(
const char *s,
int pos = npos)
const;
int find_last_not_of(
const char *s,
int pos,
int n)
const;
int find_last_not_of(
const string &s,
int pos = npos)
const;
转载请注明原文地址: https://www.6miu.com/read-23620.html