how to quote string that has both single and double quotes code example
Example: how to get a string in two quotes
#
# START of getting the substring
#
start = line.find("\"") + len("\"")
end = line.find("*\"")
substring = line[start:end]
print(substring)
plaintxt += substring
substring = ""
print(plaintxt)
#
# END of getting the substring
#
# This will find a string in the middle of two quotes
# with a star at the end
# Like this: (START --->) " This is your string (END --->) *"