function PARSEENTRIES::extractStringValue in Bibliography Module 5
Same name and namespace in other branches
- 6.2 modules/bibtexParse/PARSEENTRIES.php \PARSEENTRIES::extractStringValue()
- 6 bibtexParse/PARSEENTRIES.php \PARSEENTRIES::extractStringValue()
- 7.3 plugins/biblio_style/bibtex/PARSEENTRIES.php \PARSEENTRIES::extractStringValue()
- 7 modules/bibtexParse/PARSEENTRIES.php \PARSEENTRIES::extractStringValue()
- 7.2 modules/bibtexParse/PARSEENTRIES.php \PARSEENTRIES::extractStringValue()
1 call to PARSEENTRIES::extractStringValue()
- PARSEENTRIES::returnArrays in bibtexParse/
PARSEENTRIES.php
File
- bibtexParse/
PARSEENTRIES.php, line 222
Class
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;
}