mirror of
https://github.com/moodle/moodle.git
synced 2025-02-26 13:03:53 +01:00
27 lines
901 B
HTML
27 lines
901 B
HTML
<p align="center"><strong>Import from a CSV file</strong></p>
|
|
|
|
<p>CSV means Comma-Separated-Values and is a common format for text interchange.</p>
|
|
|
|
<p>The expected file format is a plain text file with a list of field names
|
|
as the first record. The data then follows, one record per line.
|
|
|
|
<p>The field delimiter defaults to a comma character and the field enclosure
|
|
is not set by default (field enclosures are characters that surround each
|
|
field in each record.
|
|
|
|
<p>Records should be delimited by new lines (usually generated by pressing RETURN
|
|
or ENTER in your text editor). Tabs can be specified using \t and newlines by \n. </p>
|
|
|
|
<p>Sample file:
|
|
|
|
<pre>
|
|
name,height,weight
|
|
Kai,180cm,80kg
|
|
Kim,170cm,60kg
|
|
Koo,190cm,20kg
|
|
</pre>
|
|
</p>
|
|
|
|
<p>In the initial version of this script, only simple field types are supported, but
|
|
support for all field types will be added.</p>
|