0
A delimeter is another word for "separator"
It is most often used in string splitting like that in CSV-files (which use commas as delimeters) and user-input
In the string "Hello World", the " "-character is the delimeter seperating two substringsšš¼
A good example showing the use of delimeters is splitting a sentence into a list of words using split()
This program returns the position of the word "Nemo" in a sentenceš
https://code.sololearn.com/c28R0iZY74B5/?ref=app



