---
title: "Feature: #67880 - Added count to split"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-67880"
source: "Changelog/7.5/Feature-67880-AddedCountToSplit.rst"
typo3-version: "7.5"
typo3-major: 7
type: "feature"
issue: 67880
forge: "https://forge.typo3.org/issues/67880"
tags: ["TypoScript", "Frontend"]
rendered: "2026-09-19T12:12:50+00:00"
---

# Feature: #67880 - Added count to split {#feature-67880}

See [forge#67880](https://forge.typo3.org/issues/67880)

## Description {#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:

```typoscript
# should return 9
1 = TEXT
1 {
	value = x,y,z,1,2,3,a,b,c
	split.token = ,
	split.returnCount = 1
}
```
