-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Erweitern vom Duden um Entferne_Anzahl_Vorne, Entferne_Anzahl_Hinten #43
Changes from 2 commits
b98358b
b502a0e
bece53f
207c289
621a862
fed79e6
6658987
b1b5550
9c2315d
4a37aca
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,46 @@ Und kann so benutzt werden: | |
"ein leerer Text" oder | ||
"einen leeren Text" | ||
|
||
[ | ||
Entfernt eine feste Anzahl von Buchstaben vom Anfang eines gegebenen Textes. | ||
Ist die Länge des Textes kürzer als die zu löschende Anzahl, gibt die Funktion einen leeren Text zurück. | ||
Werte für Anzahl kleiner als 0 wird wie 0 gewertet. | ||
z.B.: | ||
Der Text t ist "abcdef". | ||
Entferne 3 Buchstaben am Anfang von t. | ||
t: "def" | ||
|
||
Der Text t ist "abc". | ||
Entferne 5 Buchstaben am Anfang von t. | ||
t: "" | ||
] | ||
Die öffentliche Funktion Entferne_Anzahl_Vorne mit den Parametern text und anzahl vom Typ Text Referenz und Zahl, gibt nichts zurück, macht: | ||
Wenn nicht ((die Länge von text) größer als anzahl ist), dann: | ||
Speichere "" in text. | ||
Sonst speichere text von anzahl plus 1 bis (die Länge von text) in text. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Die Syntax hat sich im letzten Release zu |
||
Und kann so benutzt werden: | ||
"Entferne <anzahl> Buchstaben am Anfang von <text>" | ||
|
||
[ | ||
Entfernt eine feste Anzahl von Buchstaben vom Ende eines gegebenen Textes. | ||
Ist die Länge des Textes kürzer als die zu löschende Anzahl, gibt die Funktion einen leeren Text zurück. | ||
Werte für Anzahl kleiner als 0 wird wie 0 gewertet. | ||
z.B.: | ||
Der Text t ist "abcdef". | ||
Entferne 3 Buchstaben am Ende von t. | ||
t: "abc" | ||
|
||
Der Text t ist "abc". | ||
Entferne 5 Buchstaben am Ende von t. | ||
t: "" | ||
] | ||
Die öffentliche Funktion Entferne_Anzahl_Hinten mit den Parametern text und anzahl vom Typ Text Referenz und Zahl, gibt nichts zurück, macht: | ||
Wenn nicht ((die Länge von text) größer als anzahl ist), dann: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Selbiges wie oben |
||
Speichere "" in text. | ||
Sonst speichere text von 1 bis (die Länge von text minus anzahl) in text. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Die Syntax hat sich im letzten Release zu t im Bereich von ... bis ... geändert, deshalb failen noch die Tests. |
||
Und kann so benutzt werden: | ||
"Entferne <anzahl> Buchstaben am Ende von <text>" | ||
|
||
[ | ||
Entfernt alle gegebenen Buchstaben vom Anfang eines gegebenen Textes. | ||
z.B.: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
|
||
Hello World! | ||
World! | ||
orld! | ||
orld! | ||
|
||
Hello World! | ||
Hello | ||
Hell | ||
Hell | ||
|
||
guh?? | ||
guh?? | ||
guh?? | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Könnte zu
Wenn die Länge von Text kleiner als, ode anzahl ist, ...
vereinfacht (und ein wenig deutscher) werden