Skip to content

Latest commit

 

History

History
110 lines (83 loc) · 3.89 KB

find_first_not_of.md

File metadata and controls

110 lines (83 loc) · 3.89 KB

find_first_not_of

  • string[meta header]
  • std[meta namespace]
  • basic_string[meta class]
  • function[meta id-type]
size_type find_first_not_of(const basic_string& str, size_type pos = 0) const;          // (1) C++03
size_type find_first_not_of(const basic_string& str, size_type pos = 0) const noexcept; // (1) C++11

size_type find_first_not_of(const charT* s, size_type pos, size_type n) const;          // (2)
size_type find_first_not_of(const charT* s, size_type pos = 0) const;                   // (3)

size_type find_first_not_of(charT c, size_type pos = 0) const;                          // (4)

size_type find_first_not_of(std::basic_string_view<charT, traits> sv,
                            size_type pos = 0) const noexcept;                          // (5) C++17

概要

指定された文字列中のいずれの文字にも一致しない最初の場所を検索する。

要件

(3) の形式の場合、s は少なくとも traits_type::length(s) + 1 の要素を持つ charT の配列を指していること。

効果

  • (1) pos 以降で最初に str 内に存在しない文字の位置を返す。
  • (2) pos 以降で最初に s 内に存在しない文字の位置を返す。s は長さ n の文字列へのポインタである。
  • (3) (2) と同様だが、こちらは NULL 終端の文字列を扱う。
  • (4) pos 以降で最初に c と一致しない文字の位置を返す。
  • (5) pos 以降で最初に sv 内に存在しない文字の位置を返す。

戻り値

見つかればその位置を返し、見つからない場合は basic_string::npos を返す。

例外

  • (1) 投げない
  • (5) 投げない

備考

  • 一致しない文字の検索は、指定された文字列の各文字について traits_type::eq を使用することで行われる。
    例えば、(1) の形式の場合、以下のような条件を満たす最小の xpos を求める。
    • pos <= xpos かつ xpos < size()
    • 0 <= I かつ I < str.size() を満たす全ての I について、!traits_type::eq(at(xpos), str.at(I))
  • (3) の形式の場合、s の文字列長は traits_type::length(s) で求められる。

#include <iostream>
#include <string>

int main()
{
  const std::string s("Hello, world. Welcome to C++ world.");
  const std::string str("world");

  // "Hello" の "l" 以降で "world" を指定すると、"," が見つかる
  std::cout << s.find_first_not_of(str, 2) << std::endl;

  // "Hello" の "e" 以降で "worlde,. " を指定すると、"Welcome" の 1 文字目の "W" が見つかる
  std::cout << s.find_first_not_of("worlde,. ", 1) << std::endl;

  // "C++" の 1文字目の "+" 以降で '+' を指定すると、直後の空白が見つかる
  std::cout << s.find_first_not_of('+', 26) << std::endl;
}
  • find_first_not_of[color ff0000]

出力

5
14
28

実装例

(1) 以外の形式は、(1) の形式を使用して実装することができる。

// (2)
template <class charT, class traits, class Allocator>
size_type basic_string<charT, traits, Allocator>::find_first_not_of(const charT* s, size_type pos, size_type n) const
{
  return find_first_not_of(std::basic_string(s, n), pos);
}

// (3)
template <class charT, class traits, class Allocator>
size_type basic_string<charT, traits, Allocator>::find_first_not_of(const charT* s, size_type pos = 0) const
{
  return find_first_not_of(std::basic_string(s), pos);
}

// (4)
template <class charT, class traits, class Allocator>
size_type basic_string<charT, traits, Allocator>::find_first_not_of(charT c, size_type pos = 0) const
{
  return find_first_not_of(std::basic_string(1, c), pos);
}

参照