homebrewfilter/source/Tools/parser.cpp

19 lines
375 B
C++
Raw Normal View History

2011-09-27 21:52:55 +02:00
#include <string.h>
#include "parser.h"
string parser(string src, const char *suche1, const char *suche2)
{
int strpos1 = src.find(suche1);
if(strpos1 == -1) return "\0";
else{
int strpos2 = src.find(suche2);
if(strpos2 == -1) return "\0";
else{
int laenge = strpos2 - strpos1 - strlen(suche1);
return src.substr(strpos1 + strlen(suche1), laenge);
}
}
}