1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
/**********************************************************************
Copyright (C) 1998-2001 by OpenEye Scientific Software, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
***********************************************************************/
#ifdef WIN32
#pragma warning (disable : 4786)
#endif
#include <algorithm>
#include <vector>
#include <string>
using namespace std;
bool tokenize(vector<string> &, const char *, const char *);
char *trim_spaces(char *string);
bool tokenize(vector<string> &vcr, string &s, const char *delimstr,int limit=-1);
namespace OpenBabel {
bool tokenize(vector<string> &vcr, const char *buf, const char *delimstr)
{
vcr.clear();
string s = buf;
s += "\n";
size_t startpos=0,endpos=0;
for (;;)
{
startpos = s.find_first_not_of(delimstr,startpos);
endpos = s.find_first_of(delimstr,startpos);
if (endpos <= s.size() && startpos <= s.size())
vcr.push_back(s.substr(startpos,endpos-startpos));
else
break;
startpos = endpos+1;
}
return(true);
}
char *trim_spaces(char *string)
{
int length;
length = strlen(string);
if (length == 0)
return string;
while ((length > 0) && (string[0] == ' '))
{
string++;
--length;
}
if (length > 0)
{
while ((length > 0) && (string[length-1] == ' '))
{
string[length-1] = '\0';
--length;
}
}
return(string);
}
bool tokenize(vector<string> &vcr, string &s, const char *delimstr,int limit)
{
vcr.clear();
size_t startpos=0,endpos=0;
int matched=0;
unsigned int s_size = s.size();
for (;;)
{
startpos = s.find_first_not_of(delimstr,startpos);
endpos = s.find_first_of(delimstr,startpos);
if (endpos <= s_size && startpos <= s_size)
{
vcr.push_back(s.substr(startpos,endpos-startpos));
matched++;
if (matched == limit)
{
startpos = endpos+1;
vcr.push_back(s.substr(startpos,s_size));
break;
}
}
else
{
if (startpos < s_size)
vcr.push_back(s.substr(startpos,s_size-startpos));
break;
}
startpos = endpos+1;
}
return(true);
}
}
|