⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 find.hpp

📁 CGAL is a collaborative effort of several sites in Europe and Israel. The goal is to make the most i
💻 HPP
字号:
//  Boost string_algo library find.hpp header file  ---------------------------////  Copyright Pavol Droba 2002-2003. Use, modification and//  distribution is subject to the Boost Software License, Version//  1.0. (See accompanying file LICENSE_1_0.txt or copy at//  http://www.boost.org/LICENSE_1_0.txt)//  See http://www.boost.org for updates, documentation, and revision history.#ifndef BOOST_STRING_FIND_HPP#define BOOST_STRING_FIND_HPP#include <boost/algorithm/string/config.hpp>#include <boost/algorithm/string/collection_traits.hpp>#include <boost/algorithm/string/iterator_range.hpp>#include <boost/algorithm/string/finder.hpp>#include <boost/algorithm/string/compare.hpp>#include <boost/algorithm/string/constants.hpp>/*! \file    Defines a set of find algorithms. The algorithms are searching    for a substring of the input. The result is given as an \c iterator_range    delimiting the substring.*/namespace boost {    namespace algorithm {//  Generic find -----------------------------------------------//        //! Generic find algorithm        /*!            Search the input using the given finder.            \param Input A string which will be searched.            \param Finder Finder object used for searching.            \return                 An \c iterator_range delimiting the match.                 Returned iterator is either \c CollectionT::iterator or                 \c CollectionT::const_iterator, depending on the constness of                 the input parameter.        */        template<typename CollectionT, typename FinderT>        inline iterator_range<             BOOST_STRING_TYPENAME result_iterator_of<CollectionT>::type>        find(             CollectionT& Input,             FinderT Finder)        {            return Finder(begin(Input),end(Input));        }//  find_first  -----------------------------------------------//        //! Find first algorithm        /*!            Search for the first occurence of the substring in the input.                         \param Input A string which will be searched.            \param Search A substring to be searched for.            \return                 An \c iterator_range delimiting the match.                 Returned iterator is either \c CollectionT::iterator or                 \c CollectionT::const_iterator, depending on the constness of                 the input parameter.              \note This function provides the strong exception-safety guarantee        */        template<typename Collection1T, typename Collection2T>        inline iterator_range<             BOOST_STRING_TYPENAME result_iterator_of<Collection1T>::type>        find_first(             Collection1T& Input,             const Collection2T& Search)        {            return first_finder(Search)(                begin(Input),end(Input));        }        //! Find first algorithm ( case insensitive )        /*!            Search for the first occurence of the substring in the input.             Searching is case insensitive.                        \param Input A string which will be searched.            \param Search A substring to be searched for.            \param Loc A locale used for case insensitive comparison            \return                 An \c iterator_range delimiting the match.                 Returned iterator is either \c Collection1T::iterator or                 \c Collection1T::const_iterator, depending on the constness of                 the input parameter.            \note This function provides the strong exception-safety guarantee        */        template<typename Collection1T, typename Collection2T>        inline iterator_range<             BOOST_STRING_TYPENAME result_iterator_of<Collection1T>::type>        ifind_first(             Collection1T& Input,             const Collection2T& Search,            const std::locale& Loc=std::locale())        {            return first_finder(Search,is_iequal(Loc))(                begin(Input),end(Input));        }//  find_last  -----------------------------------------------//        //! Find last algorithm        /*!            Search for the last occurence of the substring in the input.                         \param Input A string which will be searched.            \param Search A substring to be searched for.            \return                 An \c iterator_range delimiting the match.                 Returned iterator is either \c Collection1T::iterator or                 \c Collection1T::const_iterator, depending on the constness of                 the input parameter.            \note This function provides the strong exception-safety guarantee        */        template<typename Collection1T, typename Collection2T>        inline iterator_range<             BOOST_STRING_TYPENAME result_iterator_of<Collection1T>::type>        find_last(             Collection1T& Input,             const Collection2T& Search)        {            return last_finder(Search)(                begin(Input),end(Input));        }        //! Find last algorithm ( case insensitive )        /*!            Search for the last match a string in the input.             Searching is case insensitive.                        \param Input A string which will be searched.            \param Search A substring to be searched for.            \param Loc A locale used for case insensitive comparison            \return                 An \c iterator_range delimiting the match.                 Returned iterator is either \c Collection1T::iterator or                 \c Collection1T::const_iterator, depending on the constness of                 the input parameter.                    \note This function provides the strong exception-safety guarantee            */        template<typename Collection1T, typename Collection2T>        inline iterator_range<             BOOST_STRING_TYPENAME result_iterator_of<Collection1T>::type>        ifind_last(             Collection1T& Input,             const Collection2T& Search,            const std::locale& Loc=std::locale())        {            return last_finder(Search, is_iequal(Loc))(                begin(Input),end(Input));        }//  find_nth ----------------------------------------------------------------------//        //! Find n-th algorithm         /*!            Search for the n-th (zero-indexed) occurence of the substring in the             input.                                 \param Input A string which will be searched.            \param Search A substring to be searched for.            \param Nth An index (zero-indexed) of the match to be found.            \return                 An \c iterator_range delimiting the match.                 Returned iterator is either \c Collection1T::iterator or                 \c Collection1T::const_iterator, depending on the constness of                 the input parameter.        */        template<typename Collection1T, typename Collection2T>        inline iterator_range<             BOOST_STRING_TYPENAME result_iterator_of<Collection1T>::type>        find_nth(             Collection1T& Input,             const Collection2T& Search,            unsigned int Nth)        {            return nth_finder(Search,Nth)(                begin(Input),end(Input));        }        //! Find n-th algorithm ( case insensitive ).        /*!            Search for the n-th (zero-indexed) occurence of the substring in the             input. Searching is case insensitive.                        \param Input A string which will be searched.            \param Search A substring to be searched for.            \param Nth An index (zero-indexed) of the match to be found.            \param Loc A locale used for case insensitive comparison            \return                 An \c iterator_range delimiting the match.                 Returned iterator is either \c Collection1T::iterator or                 \c Collection1T::const_iterator, depending on the constness of                 the input parameter.            \note This function provides the strong exception-safety guarantee        */        template<typename Collection1T, typename Collection2T>        inline iterator_range<             BOOST_STRING_TYPENAME result_iterator_of<Collection1T>::type>        ifind_nth(             Collection1T& Input,             const Collection2T& Search,            unsigned int Nth,            const std::locale& Loc=std::locale())        {            return nth_finder(Search,Nth,is_iequal(Loc))(                begin(Input),end(Input));        }//  find_head ----------------------------------------------------------------------//        //! Find head algorithm        /*!            Get the head of the input. Head is a prefix of the string of the             given size. If the input is shorter then required, whole input if considered             to be the head.            \param Input An input string            \param N Length of the head            \return                 An \c iterator_range delimiting the match.                 Returned iterator is either \c Collection1T::iterator or                 \c Collection1T::const_iterator, depending on the constness of                 the input parameter.            \note This function provides the strong exception-safety guarantee        */        template<typename CollectionT>        inline iterator_range<             BOOST_STRING_TYPENAME result_iterator_of<CollectionT>::type>        find_head(             CollectionT& Input,             unsigned int N)        {            return head_finder(N)(                begin(Input),end(Input));              }//  find_tail ----------------------------------------------------------------------//        //! Find tail algorithm        /*!            Get the head of the input. Head is a suffix of the string of the             given size. If the input is shorter then required, whole input if considered             to be the tail.            \param Input An input string            \param N Length of the tail            \return                 An \c iterator_range delimiting the match.                 Returned iterator is either \c CollectionT::iterator or                 \c CollectionT::const_iterator, depending on the constness of                 the input parameter.            \note This function provides the strong exception-safety guarantee        */        template<typename CollectionT>        inline iterator_range<             BOOST_STRING_TYPENAME result_iterator_of<CollectionT>::type>        find_tail(             CollectionT& Input,             unsigned int N)        {            return tail_finder(N)(                begin(Input),end(Input));              }//  find_token --------------------------------------------------------------------//        //! Find token algorithm        /*!            Look for a given token in the string. Token is a character that matches the            given predicate.            If the "token compress mode" is enabled, adjacent tokens are considered to be one match.                        \param Input A input string.            \param Pred An unary predicate to identify a token            \param eCompress Enable/Disable compressing of adjacent tokens            \return                 An \c iterator_range delimiting the match.                 Returned iterator is either \c CollectionT::iterator or                 \c CollectionT::const_iterator, depending on the constness of                 the input parameter.                    \note This function provides the strong exception-safety guarantee            */        template<typename CollectionT, typename PredicateT>        inline iterator_range<             BOOST_STRING_TYPENAME result_iterator_of<CollectionT>::type>        find_token(             CollectionT& Input,            PredicateT Pred,            token_compress_mode_type eCompress=token_compress_off)        {            return token_finder(Pred, eCompress)(                begin(Input),end(Input));               }    } // namespace algorithm    // pull names to the boost namespace    using algorithm::find;    using algorithm::find_first;    using algorithm::ifind_first;    using algorithm::find_last;    using algorithm::ifind_last;    using algorithm::find_nth;    using algorithm::ifind_nth;    using algorithm::find_head;    using algorithm::find_tail;    using algorithm::find_token;} // namespace boost#endif  // BOOST_STRING_FIND_HPP

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -