function PARSEENTRIES::extractStringValue in Bibliography Module 6.2
Same name and namespace in other branches
- 5 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 modules/
bibtexParse/ PARSEENTRIES.php
File
- modules/
bibtexParse/ PARSEENTRIES.php, line 229
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;
}