原来的文本如下:
AfxMessageBox(“石家庄”);
AfxMessageBox(“上海”);
AfxMessageBox(“南京”);
AfxMessageBox(“天津”);
AfxMessageBox(“保定”);
AfxMessageBox(“唐山”);
….
想替换成如下文本(原来的文本中引号中的内容不变)
MessageBox(“石家庄”,“系统提示”,MB_ICONWARNING);
MessageBox(“上海” ,“系统提示”,MB_ICONWARNING);
MessageBox(“南京” ,“系统提示”,MB_ICONWARNING);
MessageBox(“天津” ,“系统提示”,MB_ICONWARNING);
MessageBox(“保定” ,“系统提示”,MB_ICONWARNING);
MessageBox(“唐山” ,“系统提示”,MB_ICONWARNING);
请问使用什么软件可以实现,Ultraedit可以吗,如果可以如何实现