sagacity/inc/vendor/phpoffice/phpspreadsheet/tests/data/Calculation/TextData/TRIM.php

33 lines
372 B
PHP
Raw Normal View History

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