当前位置: 首页>>代码示例>>C++>>正文


C++ string::mb_str方法代码示例

本文整理汇总了C++中std::string::mb_str方法的典型用法代码示例。如果您正苦于以下问题:C++ string::mb_str方法的具体用法?C++ string::mb_str怎么用?C++ string::mb_str使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在std::string的用法示例。


在下文中一共展示了string::mb_str方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: RegExMatches

bool cppPCRE::RegExMatches( const std::string& text, int options, int startOffset, std::string* error )
{
	// output useful debug info
	CHECK_MSG( IsValid(), false, _(COMPILE_REGEX_ERROR) );

	// store the options
	mExecOptions = options;

	/*
	 - implement later
	// returned value may be used to speed up match
	pcre_extra *regexExtra = pcre_study(mRegex,
										options, // options
										&error);
	*/

	/*
	// get full info
	int pcre_fullinfo(const pcre *code, const pcre_extra *extra,
	int what, void *where);
	int rc;
	size_t len;
	rc = pcre_fullinfo(mRegex, regexExtra, PCRE_INFO_CAPTURECOUNT, &len);

	*/

	// convert the std::string to a std::string (for use with PCRE)
	const char* subject = (char*)NULL;

#if wxUSE_UNICODE
		subject = string(text.mb_str(wxConvUTF8)).c_str();
#else
		subject = (const char*)text.c_str();
#endif

	/*
	int pcre_exec(const pcre *code, const pcre_extra *extra,
	const char *subject, int length, int startoffset,
	int options, int *ovector, int ovecsize);
	*/
	// execute the pattern matching mechanism (obtain match vector, etc)
	mMatchCount = pcre_exec(
	mRegex,             /* result of pcre_compile() */
	0,           /* we didn't study the pattern */
	subject,  /* the subject string */
	(int)text.length(),             /* the length of the subject string */
	startOffset,              /* start at offset ? in the subject */
	mExecOptions,              /* options */
	mVector,        /* vector of integers for substring information */
	mVectorCount);            /* number of elements (NOT size in bytes) */

	return (mVector[0] >= 0);
}
开发者ID:dpanzer,项目名称:TestFramework,代码行数:53,代码来源:PcreMiniCpp.cpp


注:本文中的std::string::mb_str方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。