x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
regex_find_format.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\algorithm\string\regex_find_format.hpp
旋转
特效
属性
历史版本
// Boost string_algo library regex_find_format.hpp header file ---------------------------// // Copyright Pavol Droba 2002-2003. // // Distributed under 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_REGEX_FIND_FORMAT_HPP #define BOOST_STRING_REGEX_FIND_FORMAT_HPP #include
#include
#include
#include
/*! \file Defines the \c regex_finder and \c regex_formatter generators. These two functors are designed to work together. \c regex_formatter uses additional information about a match contained in the regex_finder search result. */ namespace boost { namespace algorithm { // regex_finder -----------------------------------------------// //! "Regex" finder /*! Construct the \c regex_finder. Finder uses the regex engine to search for a match. Result is given in \c regex_search_result. This is an extension of the iterator_range. In addition it containes match results from the \c regex_search algorithm. \param Rx A regular expression \param MatchFlags Regex search options \return An instance of the \c regex_finder object */ template< typename CharT, typename RegexTraitsT> inline detail::find_regexF< basic_regex
> regex_finder( const basic_regex
& Rx, match_flag_type MatchFlags=match_default ) { return detail:: find_regexF< basic_regex
>( Rx, MatchFlags ); } // regex_formater ---------------------------------------------// //! Regex formatter /*! Construct the \c regex_formatter. Regex formatter uses the regex engine to format a match found by the \c regex_finder. This formatted it designed to closely cooperate with \c regex_finder. \param Format Regex format definition \param Flags Format flags \return An instance of the \c regex_formatter functor */ template< typename CharT, typename TraitsT, typename AllocT > inline detail::regex_formatF< std::basic_string< CharT, TraitsT, AllocT > > regex_formatter( const std::basic_string
& Format, match_flag_type Flags=format_default ) { return detail::regex_formatF< std::basic_string
>( Format, Flags ); } } // namespace algorithm // pull the names to the boost namespace using algorithm::regex_finder; using algorithm::regex_formatter; } // namespace boost #endif // BOOST_STRING_REGEX_FIND_FORMAT_HPP
regex_find_format.hpp
网页地址
文件地址
上一页
18/24
下一页
下载
( 3 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.