Files
PhpSpreadsheet/tests/data/Calculation/TextData/REPT.php
T
Mark Baker 1a7b9a446a First phase of refactoring the Excel Text functions (#1945)
* Refactoring the Excel Text functions
* More unit tests for utf-8 handling, for edge cases, and for argument validations
2021-03-23 13:34:28 +01:00

15 lines
354 B
PHP

<?php
return [
['#VALUE!'], // exception not enough args
['#VALUE!', '"ABC"'], // exception not enough args
['#VALUE!', '"ABC"', '"DEF"'],
['ABCABCABC', '"ABC"', 3],
['ABCABC', '"ABC"', 2.2],
['', '"ABC"', 0],
['TRUETRUE', true, 2],
['111', 1, 3],
['δύο δύο ', '"δύο "', 2],
['#VALUE!', '"ABC"', -1],
];