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


C++ CL_StringRef::find_first_not_of方法代码示例

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


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

示例1: next_line

void CL_SpanLayout_Impl::next_line(CurrentLine &current_line)
{
	current_line.cur_line.width = current_line.x_position;
	for (std::vector<LineSegment>::reverse_iterator it = current_line.cur_line.segments.rbegin(); it != current_line.cur_line.segments.rend(); ++it)
	{
		LineSegment &segment = *it;
		if (segment.type == object_text)
		{
			CL_StringRef s = text.substr(segment.start, segment.end-segment.start);
			if (s.find_first_not_of(" \t\r\n") != CL_StringRef::npos)
			{
				current_line.cur_line.width = segment.x_position + segment.width;
				break;
			}
		}
		else
		{
			current_line.cur_line.width = segment.x_position + segment.width;
			break;
		}
	}

	int height = current_line.cur_line.height;
	lines.push_back(current_line.cur_line);
	current_line.cur_line = Line();
	current_line.x_position = 0;
	current_line.y_position += height;
}
开发者ID:animehunter,项目名称:clanlib-2.3,代码行数:28,代码来源:span_layout_impl.cpp

示例2: trim_whitespace

inline CL_StringRef CL_XMLTokenizer_Generic::trim_whitespace(const CL_StringRef &text)
{
	CL_StringRef::size_type pos_start = text.find_first_not_of(" \t\r\n");
	if (pos_start == CL_StringRef::npos)
		return CL_StringRef();
	CL_StringRef::size_type pos_end = text.find_last_not_of(" \t\r\n", pos_start);
	if (pos_end == CL_StringRef::npos)
	{
		if (pos_start == 0)
			return text;
		else
			return string_allocator.alloc(text.substr(pos_start));
	}
	else
	{
		return string_allocator.alloc(text.substr(pos_start, pos_end - pos_start + 1));
	}
}
开发者ID:Zenol,项目名称:clanlib-2.4,代码行数:18,代码来源:xml_tokenizer.cpp


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