TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,33 @@
.. include:: /Includes.rst.txt
.. _feature-67880:
======================================
Feature: #67880 - Added count to split
======================================
See :issue:`67880`
Description
===========
A new property `returnCount` is added to the stdWrap property `split`.
When dealing with comma separated values like the content of `field:records` or similar,
we might need to know how many items are present inside the csv.
Example:
.. code-block:: typoscript
# should return 9
1 = TEXT
1 {
value = x,y,z,1,2,3,a,b,c
split.token = ,
split.returnCount = 1
}
.. index:: TypoScript, Frontend