From ab7b5f37a8559762e1d07afaaf71b471a8163572 Mon Sep 17 00:00:00 2001 From: Philipp Schneider <schneider.philipp@uni-muenster.de> Date: Mon, 8 Aug 2022 17:46:08 +0200 Subject: [PATCH] Add function to clean class name string from unnecessary characters --- src/rdf-mappings/functions.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/rdf-mappings/functions.py b/src/rdf-mappings/functions.py index aafcca0..28608a7 100644 --- a/src/rdf-mappings/functions.py +++ b/src/rdf-mappings/functions.py @@ -37,4 +37,16 @@ def serialize_graph(g, output_file_list): file_format = output_option['file_format'] g.serialize(destination=output_rdf_path, format=file_format) - print(f'Created {output_rdf_path}') \ No newline at end of file + print(f'Created {output_rdf_path}') + +def clean_class_name_string(input_string): + """ + Cleans string that is to be used as a class name from unwanted characters. + """ + + char_list = ["'", '"', '.', '+', ',', '*', '&', '/', '=', '’', ';', '¨', '#', '?', '\n'] + + for char in char_list: + input_string = input_string.replace(char, '') + + return input_string \ No newline at end of file -- GitLab