25 public static function getTokens(
string $expression): array
27 $expression = ltrim($expression,
'=');
28 $expression = trim($expression);
32 preg_match_all(
"/\[\[[^\]]*&[^\]]*\]\]/ui", $expression, $matches);
33 $matches_inside_brackets = $matches[0];
34 $replace_random = sha1(
"replacement_string");
38 foreach ($matches_inside_brackets as $match) {
42 $match_save = str_replace(
"&", $replace_random, $match);
43 $expression = str_replace($match, $match_save, $expression);
47 preg_match_all(
"/([^\\\\&]|\\\\&)*/ui", $expression, $matches);
55 $replace = str_ireplace(
'\&',
'&', $result);
58 $return[] = str_replace($replace_random,
"&", $replace);
62 return array_map(
'trim', $return);
72 $pattern =
'#((^\[\[)[\d\.]+)|(\(|\)|\\' . implode(
"|\\", $operators) .
')#';
73 $tokens = preg_split($pattern, $math_expression, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
75 return array_map(
'trim', $tokens);
static getTokens(string $expression)
Split expression by & (ignore escaped &-symbols with backslash)
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...