You are here

public function CsvParser::setDelimiter in Feeds 8.3

Sets the column delimiter string.

Parameters

string $delimiter: By default, the comma (',') is used as delimiter.

Return value

$this

File

src/Component/CsvParser.php, line 136

Class

CsvParser
Parses an RFC 4180 style CSV file.

Namespace

Drupal\feeds\Component

Code

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