python delimiter code example
Example 1: split string python
file='/home/folder/subfolder/my_file.txt'
file_name=file.split('/')[-1].split('.')[0]
Example 2: python split string on char
>>> "MATCHES__STRING".split("__")
['MATCHES', 'STRING']
file='/home/folder/subfolder/my_file.txt'
file_name=file.split('/')[-1].split('.')[0]
>>> "MATCHES__STRING".split("__")
['MATCHES', 'STRING']