You are here

public function ParserCSV::setDelimiter in Feeds 7.2

Same name and namespace in other branches
  1. 6 libraries/ParserCSV.inc \ParserCSV::setDelimiter()
  2. 7 libraries/ParserCSV.inc \ParserCSV::setDelimiter()

Set the column delimiter string. By default, the comma (',') is used as delimiter.

File

libraries/ParserCSV.inc, line 139
Contains CSV Parser.

Class

ParserCSV
Functionality to parse CSV files into a two dimensional array.

Code

public function setDelimiter($delimiter) {
  $this->delimiter = $delimiter;
}