1. General data types - String

    Artikel: AN0001760Aktualisiert:
    Die vorgegebene Sprachenversion vom Artikeltext wird angezeigt, weil es kein Text von der ausgewählten Sprache und Version gibt.

    Data type string is used for storing a text value. The text is internally stored in  Unicode and its maximal size is 2 trillions of characers.

     

    Use in scripts:

    var t = 'My text';
    AnyFunction( t, 'enable');

×