mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 23:25:09 +01:00
19 lines
375 B
C++
19 lines
375 B
C++
|
|
#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);
|
|
}
|
|
}
|
|
}
|