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