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

33 lines
372 B
PHP

<?php
return [
[
'HELLO ',
'HELLO',
],
[
' HELLO',
'HELLO',
],
[
' HELLO ',
'HELLO',
],
[
' HELLO',
' HELLO',
],
[
'HELLO WORLD',
'HELLO WORLD',
],
[
true,
'TRUE',
],
[
null,
null,
],
];