Home
last modified time | relevance | path

Searched refs:delimiter (Results 201 – 225 of 263) sorted by last modified time

1234567891011

/plugin/sequencediagram/bower_components/lodash/test/
H A Dremove.js16 delimiter = result.charAt(0),
17 lastIndex = result.lastIndexOf(delimiter);
/plugin/bureaucracyau/helper/
H A Dfieldusers.php54 $delimiter = preg_match('/\(.*\)/s', $matches[0]) ? $matches['delimiter'] : ', ';
59 return implode($delimiter, $users);
62 return implode($delimiter, array_map(function ($user) use ($auth, $attribute) {
H A Dfield.php253 $delimiter = preg_match('/\(.*\)/s', $matches[0]) ? $matches['delimiter'] : ', ';
255 return implode($delimiter, $value);
/plugin/bureaucracy-au/helper/
H A Dfieldusers.php54 $delimiter = preg_match('/\(.*\)/s', $matches[0]) ? $matches['delimiter'] : ', ';
59 return implode($delimiter, $users);
62 return implode($delimiter, array_map(function ($user) use ($auth, $attribute) {
H A Dfield.php253 $delimiter = preg_match('/\(.*\)/s', $matches[0]) ? $matches['delimiter'] : ', ';
255 return implode($delimiter, $value);
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dtemplates.rst487 The easiest way is to output the variable delimiter (``{{``) by using a variable
590 a template). A string can contain a delimiter if it is preceded by a
H A Drecipes.rst544 ``{% verbatim %}`` tag or by escaping each delimiter via ``{{ '{{' }}`` and
H A Dcoding_standards.rst7 * Put one (and only one) space after the start of a delimiter (``{{``, ``{%``,
8 and ``{#``) and before the end of a delimiter (``}}``, ``%}``, and ``#}``):
17 it and the delimiter:
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dsplit.rst7 The ``split`` filter splits a string by the given delimiter and returns a list
30 If the ``delimiter`` is an empty string, then value will be split by equal
43 Internally, Twig uses the PHP `explode`_ or `str_split`_ (if delimiter is
49 * ``delimiter``: The delimiter
H A Dreplace.rst14 {# using % as a delimiter is purely conventional and optional #}
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DCoreExtension.php775 * @param string $delimiter The delimiter
780 function twig_split_filter(Environment $env, $value, $delimiter, $limit = null) argument
782 if (!empty($delimiter)) {
783 return null === $limit ? explode($delimiter, $value) : explode($delimiter, $value, $limit);
/plugin/findologicxmlexport/vendor/hoa/ustring/
H A DUstring.php333 $delimiter = mb_substr($pattern, 0, 1);
335 mb_strrchr($pattern, $delimiter, false),
336 mb_strlen($delimiter)
/plugin/pdb/classes/
H A Dcache.php21 $delimiter = ($conf['useslash'])?'/':':';
24 $this->linkFormat = $this->namespace.$delimiter.$this->prefix.'%s.'.$this->extension;
/plugin/pubchem/classes/
H A Dcache.php21 $delimiter = ($conf['useslash'])?'/':':';
24 $this->linkFormat = $this->namespace.$delimiter.$this->prefix.'%s.'.$this->extension;
/plugin/pubmed/classes/
H A Dcache.php21 $delimiter = ($conf['useslash'])?'/':':';
24 $this->linkFormat = $this->namespace.$delimiter.$this->prefix.'%s.'.$this->extension;
/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/
H A Dspecs.md737 would otherwise be used as an emphasis delimiter, you can backslash
/plugin/davcard/vendor/sabre/vobject/lib/Property/
H A DBinary.php31 public $delimiter = null; variable in Sabre\\VObject\\Property\\Binary
H A DFloatValue.php26 public $delimiter = ';'; variable in Sabre\\VObject\\Property\\FloatValue
39 $val = explode($this->delimiter, $val);
55 $this->delimiter,
H A DTime.php24 public $delimiter = null; variable in Sabre\\VObject\\Property\\Time
/plugin/davcard/vendor/sabre/vobject/lib/Property/ICalendar/
H A DCalAddress.php25 public $delimiter = null; variable in Sabre\\VObject\\Property\\ICalendar\\CalAddress
H A DDuration.php29 public $delimiter = ','; variable in Sabre\\VObject\\Property\\ICalendar\\Duration
42 $this->setValue(explode($this->delimiter, $val));
53 return implode($this->delimiter, $this->getParts());
H A DDateTime.php33 public $delimiter = ','; variable in Sabre\\VObject\\Property\\ICalendar\\DateTime
86 $this->setValue(explode($this->delimiter, $val));
97 return implode($this->delimiter, $this->getParts());
/plugin/davcard/vendor/sabre/vobject/lib/Property/VCard/
H A DDateAndOrTime.php27 public $delimiter = null; variable in Sabre\\VObject\\Property\\VCard\\DateAndOrTime
276 return implode($this->delimiter, $this->getParts());
/plugin/davcard/vendor/sabre/vobject/lib/
H A DProperty.php55 public $delimiter = ';'; variable in Sabre\\VObject\\Property
/plugin/davcard/vendor/sabre/vobject/lib/Parser/
H A DMimeDir.php478 * @param string $delimiter
481 static public function unescapeValue($input, $delimiter = ';') { argument
484 if ($delimiter) {
485 $regex .= ' | (' . $delimiter . ')';
510 case $delimiter :
523 return $delimiter ? $resultArray : $result;

1234567891011