アフィリエイト広告を利用しています

広告

posted by fanblog

2018年03月07日

《その323》 stringクラス(9)


 find_first_of, find_last_of による検索

 find_first_of関数
  検索文字集合の要素の一つが、最初に現れる位置を返却します。
  また、文字型の値を受け取る場合は、find と同等です。

 find_last_of関数
  検索文字集合の要素の一つが、最後に現れる位置を返却します。
  また、文字型の値を受け取る場合は、rfind と同等です。

 find_first_not_of関数
  検索文字集合に含まれない要素が、最初に現れる位置を返却します。

 find_last_not_of関数
  検索文字集合に含まれない要素が、最後に現れる位置を返却します。


#include <string>
#include <iostream>
using namespace std;

int main() {
//【find_first_of, find_last_of】

string s0("ab#12$$21#ba");
int pos;

// '$'の最初の出現位置
pos = s0.find_first_of('$');
cout << pos << '\n'; // 5
// '$'の最後の出現位置
pos = s0.find_last_of('$');
cout << pos << "\n\n"; // 6


// '#'or'$'の最初の出現位置
pos = s0.find_first_of("#$");
cout << pos << '\n'; // 2
// '#'or'$'の最後の出現位置
pos = s0.find_last_of("#$");
cout << pos << "\n\n"; // 9


// '#'or'$'or'2'or'b' の最初の出現位置
pos = s0.find_first_of("#$2b");
cout << pos << '\n'; // 1
// '#'or'$'or'2'or'b' の最後の出現位置
pos = s0.find_last_of("#$2b");
cout << pos << "\n\n"; // 10


// 第二引数の 3 は検索開始位置
pos = s0.find_first_of("#$", 3);
cout << pos << '\n'; // 5
// 第三引数の 1 は、
// 第一引数"#$"の先頭からの 1 文字、
// すなわち'#'を検索キーとして使用
// せよという指示。

pos = s0.find_first_of("#$", 3, 1);
cout << pos << "\n\n"; // 9


// "楽しい日々"を検索しているのでは
// ありません。

string str("Those were the days!");
string key("fun days");
pos = str.find_first_of(key);
cout << pos << '\n'; // 3


// find_first_not_of
pos = str.find_first_not_of(key);
cout << pos << '\n'; // 0
// find_last_not_of
pos = str.find_last_not_of(key);
cout << pos << '\n'; // 19
}

h11_002302.png



この記事へのコメント
コメントを書く

お名前:

メールアドレス:


ホームページアドレス:

コメント:

※ブログオーナーが承認したコメントのみ表示されます。

この記事へのトラックバックURL
https://fanblogs.jp/tb/7401780
※ブログオーナーが承認したトラックバックのみ表示されます。

この記事へのトラックバック

 たまに、クリック お願いします m(_ _)m

 AA にほんブログ村 IT技術ブログ C/C++へ

こうすけ:メール kousuke_cpp@outlook.jp

【1】★★C++ 記事目次★★ ← 利用可能です。
・新版明解C++入門編 / 新版明解C++中級編
・その他 C++ 関連記事

【2】★★こうすけ@C#★★
・C# の初歩的な記事


検索
<< 2018年08月 >>
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31  
プロフィール
こうすけさんの画像
こうすけ

 たまに、クリック お願いします m(_ _)m

 AA にほんブログ村 IT技術ブログ C/C++へ

こうすけ:メール kousuke_cpp@outlook.jp

【1】★★C++ 記事目次★★ ← 利用可能です。
・新版明解C++入門編 / 新版明解C++中級編
・その他 C++ 関連記事

【2】★★こうすけ@C#★★
・C# の初歩的な記事


×

この広告は30日以上新しい記事の更新がないブログに表示されております。