针对一个XML,如果不想使用任何第三方控件,只是使用wxString,设置属性可以用一下方法来操作

针对一个XML,如果不想使用任何第三方控件,只是使用wxString,设置属性可以用一下方法来操作

wxString common_tool_wx::set_key_attribute(const wxString& file_content_all,
	                                   const wxString& key_parent, 
 									   const wxString& str_find,
									   const wxString& str_replace)
{
	
	bool flag=false;
	wxString file_context    = file_content_all;
	wxString file_context_result ="";
	int len = file_context.length();
	if(len<=0)
	{
		return wxEmptyString;
	}
	
	wxString key_parent_before    = "";
	wxString key_parent_context    = "";
	wxString key_parent_after    = "";
	
	wxString key_parent_begin="";
	wxString key_parent_end="";
	       
	wxString str_key_parent = key_parent;
	key_parent_begin =wxString::Format(wxT("<%s"),str_key_parent);
	key_parent_end =wxString::Format(wxT("</%s>"),str_key_parent);

	int pos_key_parent_begin=0;
	int pos_key_parent_end=0;
	int len_key_parent_begin = key_parent_begin.length();
	int len_key_parent_end = key_parent_end.length();

	pos_key_parent_begin = file_context.Find(key_parent_begin);
	if(wxString::npos != pos_key_parent_begin)
	{
		key_parent_before = file_context.substr(0,pos_key_parent_begin);
	}

	pos_key_parent_end = file_context.Find(key_parent_end);
	int i_end=0;
	if(wxString::npos != pos_key_parent_end)
	{
		key_parent_after = file_context.substr(pos_key_parent_end);
	}

	if((pos_key_parent_begin>=0)&&(pos_key_parent_end>=0)&&(pos_key_parent_end-pos_key_parent_begin>=0))
	{
		key_parent_context = file_context.substr(pos_key_parent_begin,pos_key_parent_end-pos_key_parent_begin);
		// start replace
		int iPos_replace = key_parent_context.Find(str_replace);
		if(wxString::npos == iPos_replace)
		{
		     //如果没有str_replace,那么就替换
			 key_parent_context.Replace(str_find,str_replace);
			// cout<<key_parent_context<<endl;
			return key_parent_before + key_parent_context + key_parent_after;
		}
	}
	return "";
}


测试OK

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值