You are here

function PARSEENTRIES::extractStringValue in Bibliography Module 6

Same name and namespace in other branches
  1. 5 bibtexParse/PARSEENTRIES.php \PARSEENTRIES::extractStringValue()
  2. 6.2 modules/bibtexParse/PARSEENTRIES.php \PARSEENTRIES::extractStringValue()
  3. 7.3 plugins/biblio_style/bibtex/PARSEENTRIES.php \PARSEENTRIES::extractStringValue()
  4. 7 modules/bibtexParse/PARSEENTRIES.php \PARSEENTRIES::extractStringValue()
  5. 7.2 modules/bibtexParse/PARSEENTRIES.php \PARSEENTRIES::extractStringValue()
1 call to PARSEENTRIES::extractStringValue()
PARSEENTRIES::returnArrays in bibtexParse/PARSEENTRIES.php

File

bibtexParse/PARSEENTRIES.php, line 227

Class

PARSEENTRIES

Code

function extractStringValue($string) {

  // $string contains a end delimiter, remove it
  $string = trim(substr($string, 0, strlen($string) - 1));

  // remove delimiters and expand
  $string = $this
    ->removeDelimitersAndExpand($string);
  return $string;
}