ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilDclTokenizer.php
Go to the documentation of this file.
1 <?php
2 
20 {
25  public static function getTokens(string $expression): array
26  {
27  $expression = ltrim($expression, '=');
28  $expression = trim($expression);
29 
30  $matches = [];
31  //Match all & inside [] (e.g. [[Metadaten & OER]])
32  preg_match_all("/\[\[[^\]]*&[^\]]*\]\]/ui", $expression, $matches);
33  $matches_inside_brackets = $matches[0];
34  $replace_random = sha1("replacement_string");
35 
36 
37  //Replace those & with a set of unprobable chars, to be ignored by the following selection of tokens
38  foreach ($matches_inside_brackets as $match) {
39  if (!$match) {
40  continue;
41  }
42  $match_save = str_replace("&", $replace_random, $match);
43  $expression = str_replace($match, $match_save, $expression);
44  }
45 
46  //var_dump($expression);
47  preg_match_all("/([^\\\\&]|\\\\&)*/ui", $expression, $matches);
48  $results = $matches[0];
49 
50  $return = [];
51  foreach ($results as $result) {
52  if (!$result) {
53  continue;
54  }
55  $replace = str_ireplace('\&', '&', $result);
56 
57  //Replace those & before replaced chars back
58  $return[] = str_replace($replace_random, "&", $replace);
59 
60  }
61 
62  return array_map('trim', $return);
63  }
64 
69  public static function getMathTokens(string $math_expression): array
70  {
71  $operators = array_keys(ilDclExpressionParser::getOperators());
72  $pattern = '#((^\[\[)[\d\.]+)|(\(|\)|\\' . implode("|\\", $operators) . ')#';
73  $tokens = preg_split($pattern, $math_expression, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
74 
75  return array_map('trim', $tokens);
76  }
77 }
static getTokens(string $expression)
Split expression by & (ignore escaped &-symbols with backslash)
$results
static getMathTokens(string $math_expression)
Generate tokens for a math expression.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...