|
#
5
My understanding of CSV |
 |
|
|
exp |
|
|
|
| Online |
no |
| State |
|
| Grouping |
Member |
| Class |
class4 |
| Score |
348 |
| Wealth |
219 |
| Posts |
269 |
| Login |
11:49:09 |
|
|
|
In # 3, hans' example
, is a delimeter
" is a qualifier
You can define different delimeter and qualifier actually, but you must following the following rule:
You must use qualifier if the content of colunms contains a symbol that is the same as the delimeter, for example, two columns csv: "yes,text,hi","good,netspec"
You must use the symbol of qualifier to escape the content of colunms contains a symbol that is the same as the qualifier. For example, ""hi, how are you"" in a column.
Normally we use , as a delimeter and " as a qualifier. Hits: 448, Date: 2010-03-14 23:32:49
|
|
|
|