You are here

public function ParserCSV::setDelimiter in Feeds 8.2

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

File

lib/Drupal/feeds/ParserCSV.php, line 45
Contains CSV Parser.

Class

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

Namespace

Drupal\feeds

Code

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