PhpSpreadsheet/tests/data/Calculation/TextData/TRIM.php

34 lines
409 B
PHP

<?php
return [
[
'HELLO',
'HELLO ',
],
[
'HELLO',
' HELLO',
],
[
'HELLO',
' HELLO ',
],
[
' HELLO',
' HELLO',
],
[
'HELLO WORLD',
'HELLO WORLD',
],
[
'TRUE',
true,
],
[
null,
null,
],
'no arguments' => ['exception'],
];