Nov-14-2021, 01:07 AM
Could do something like this
string = 'family/Smallville, Robert & Mary/28134: Bioelectro healing - https://t.me/bioelectromagnetic_healing' print(string) new_string = string.split('-') new_string = new_string[1].strip() print(new_string)
Output:family/Smallville, Robert & Mary/28134: Bioelectro healing - https://t.me/bioelectromagnetic_healing
https://t.me/bioelectromagnetic_healing
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags
Download my project scripts
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags
Download my project scripts