0
But what is a delimiter?
3 Answers
0
All symbols used to mark both the start and end of a region of text, like () "" '' <> {} etc.. But also those that mark a border, like commas, and end of line, like semi-colons.
0
The above is sort of correct.
A delimiter is any character in a string used to separate values.
EX: "This,is,a,sentence,that,uses,commas,as,delimiters"
"This.is.a.sentence.that.uses.periods.as.delimiters."
"This is a sentence that uses spaces as delimiters"
0
Jay Welborn's answer makes the best sense.