0
What is meant by delimeter
4 Réponses
+ 2
Harsh - Comma (, ), semicolon (;), pipe (|) , quotes (" or '), slashes (/\) are called as delimeter.
https://www.computerhope.com/jargon/d/delimite.htm
https://en.m.wikipedia.org/wiki/Delimiter#:~:text=A%20delimiter%20is%20a%20sequence,sequence%20of%20comma-separated%20values.
0
A delimiter is a character that is used to mark the end of something. E.g semicolons(;) are usually used as delimiters to mark the end of a statement in most languages.
When splitting strings you are usually required to provide a delimiter string or char that is used to break the string. For example,
"35-66-88-76". If the delimiter is '-', It can be split to 35, 66, 88 and 76.
0
Thank you AJ Anant
0
Thank you Ore Adeleye