Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<h3>Funktion title()</h3> | ||
Wandelt alle Worte einer Zeichenkette in Kleinbuchstaben mit großem Anfangsbuchstaben um. | ||
|
||
<p><h4>Syntax</h4> | ||
title(<i>zeichenkette</i>)</p> | ||
|
||
<p><h4>Argumente</h4> | ||
<!-- List args for functions here--> | ||
<i> zeichenkette</i> → ist eine Zeichenkette. Die Zeichenkette, deren Worte in Kleinbuchstaben mit großem Anfangsbuchstaben umgewandelt werden.</p> | ||
|
||
<p><h4>Beispiel</h4> | ||
<!-- Show example of function.--> | ||
title('hello WOrld') → 'Hello World'</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<h3>title() function</h3> | ||
Converts all words of a string to title case (all words lower case with leading | ||
capital letter). | ||
|
||
<p><h4>Syntax</h4> | ||
title(<i>string</i>)</p> | ||
|
||
<p><h4>Arguments</h4> | ||
<!-- List args for functions here--> | ||
<i> string</i> → is string. The string to convert to title case.</p> | ||
|
||
<p><h4>Example</h4> | ||
<!-- Show example of function.--> | ||
upper('hello WOrld') → 'Hello World'</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters