You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
605 B
21 lines
605 B
/**
|
|
* @file string_helper.h
|
|
* @brief string utilities to help dealing with string
|
|
* @author James
|
|
* @history
|
|
* ===================================================================================
|
|
* Date Name Description of Change
|
|
* 09-July-2008 James
|
|
*/
|
|
|
|
#ifndef STRING_HELPER
|
|
#define STRING_HELPER
|
|
#include <string>
|
|
#include <vector>
|
|
using namespace std;
|
|
string TrimString(string strArg);
|
|
void Split(string strArg, char spliter, vector<string>& ans);
|
|
void Split(string strArg, string spliter, vector<string>& ans);
|
|
void RemoveLiner(string& in, string& out);
|
|
|
|
#endif |