From professional translators, enterprises, web pages and freely available translation repositories.
stringbytelength()
antialiasingmode()
Last Update: 2018-02-13
Usage Frequency: 1
Quality:
added: stringbytelength() - to calculate the needed length of a string in the different encoding supported by purebasic
hinzugefügt : stringbytelength() - zum berechnen der benötigten länge eines strings in den von purebasic unterstützten verschiedenen kodierungen
Last Update: 2018-02-13
Usage Frequency: 1
Quality:
; shows the quick fox jumps over the lazy dog. debug "* removestring" string2 = removestring(string1, " brown") debug string2 ; replacestring can be used to change the occurrence of a substring within another string. ; shows the quick brown fox jumps over the sleeping dog. debug "* replacestring" string2 = replacestring(string1, "lazy", "sleeping") debug string2 ; stringbytelength returns the length of a string in bytes in the specified format, or the current default ; if one is not specified (excluding the terminating null).
; zeigt the quick fox jumps over the lazy dog. debug "* removestring" string2 = removestring(string1, " brown") debug string2 ; replacestring kann verwendet werden, um das vorkommen eines teilstrings innerhalb eines anderen strings zu ändern. ; zeigt the quick brown fox jumps over the sleeping dog. debug "* replacestring" string2 = replacestring(string1, "lazy", "sleeping") debug string2 ; stringbytelength gibt die länge eines strings in bytes zurück - im angegebenen format oder ; den aktuellen standard, wenn kein format angegeben wird (ohne das abschließende nullzeichen).
Last Update: 2018-02-13
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting