针对一个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