---
title: "Feature: #66697 - Add uppercamelcase and lowercamelcase to stdWrap.case"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-66697"
source: "Changelog/7.3/Feature-66697-AddUppercamelcaseAndLowercamelcaseToStdWrap.case.rst"
typo3-version: "7.3"
typo3-major: 7
type: "feature"
issue: 66697
forge: "https://forge.typo3.org/issues/66697"
tags: ["TypoScript", "Frontend"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #66697 - Add uppercamelcase and lowercamelcase to stdWrap.case {#feature-66697}

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

## Description {#description}

To make it possible to change a value from underscored to "UpperCamelCase" or "lowerCamelCase" the options
`uppercamelcase` and `lowercamelcase` are added to `stdWrap.case`.

```typoscript
tt_content = CASE
tt_content {
	key {
		field = CType
	}

	my_custom_ctype =< lib.userContent
	my_custom_ctype {
		file = EXT:site_base/Resources/Private/Templates/SomeOtherTemplate.html
		settings {
			extraParam = 1
		}
	}

	default =< lib.userContent
	default {
		file = TEXT
		file.field = CType
		file.stdWrap.case = uppercamelcase
		file.wrap = EXT:site_base/Resources/Private/Templates/|.html
	}
}
```
