summaryrefslogtreecommitdiff
path: root/parse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parse.cpp')
-rw-r--r--parse.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/parse.cpp b/parse.cpp
index e70b795..8d80f84 100644
--- a/parse.cpp
+++ b/parse.cpp
@@ -109,6 +109,12 @@ void cParse::RemoveNonAlphaNumeric(char *String)
memmove(p,p+6,len-6);
}
+ len=strlen(String);
+ p=String;
+ // cut off " Folge XX"
+ p=strstr(String," Folge ");
+ if (p) *p=0;
+
// remove non alphanumeric characters
len=strlen(String);
p=String;