Zum Hauptinhalt springen

String-Funktionen

  • {formatPerm}: Converts a Pascal Discord permission to a more human-readable format

    • Argumente:
      • permission = ""
    • Beispielergebnis: Send Messages
      • Mit Eingabe: {formatPerm;SendMessages}
    • Beispielergebnis: Administrator
      • Mit Eingabe: {formatPerm;Administrator}
    • Beispielergebnis: Use Voice Activity
      • Mit Eingabe: {formatPerm;UseVAD}
    • Beispielergebnis: View Creator Monetization Analytics
      • Mit Eingabe: {formatPerm;ViewCreatorMonetizationAnalytics}
  • {ordinal}: Adds the specific ordinal suffix to the given number

    • Argumente:
      • number = 1
    • Beispielergebnis: -4th
      • Mit Eingabe: {ordinal;-4}
    • Beispielergebnis: -1th
      • Mit Eingabe: {ordinal;-1}
    • Beispielergebnis: 0th
      • Mit Eingabe: {ordinal;0}
    • Beispielergebnis: 1st
      • Mit Eingabe: {ordinal;1}
    • Beispielergebnis: 2nd
      • Mit Eingabe: {ordinal;2}
    • Beispielergebnis: 3rd
      • Mit Eingabe: {ordinal;3}
    • Beispielergebnis: 4th
      • Mit Eingabe: {ordinal;4}
    • Beispielergebnis: 10th
      • Mit Eingabe: {ordinal;10}
    • Beispielergebnis: 11th
      • Mit Eingabe: {ordinal;11}
    • Beispielergebnis: 12th
      • Mit Eingabe: {ordinal;12}
    • Beispielergebnis: 13th
      • Mit Eingabe: {ordinal;13}
    • Beispielergebnis: 14th
      • Mit Eingabe: {ordinal;14}
    • Beispielergebnis: 21st
      • Mit Eingabe: {ordinal;21}
    • Beispielergebnis: 22nd
      • Mit Eingabe: {ordinal;22}
    • Beispielergebnis: 101st
      • Mit Eingabe: {ordinal;101}
    • Beispielergebnis: 111th
      • Mit Eingabe: {ordinal;111}
  • {length}: Returns the length of the given string

    • Argumente:
      • value = ""
    • Beispielergebnis: 4
      • Mit Eingabe: {length;test}
  • {upper}: Uppercases the given string

    • Argumente:
      • value = ""
    • Beispielergebnis: TEST
      • Mit Eingabe: {upper;test}
  • {lower}: Lowercases the given string

    • Argumente:
      • value = ""
    • Beispielergebnis: test
      • Mit Eingabe: {lower;TEST}
  • {trim}: Trims the given string at the beginning and end

    • Argumente:
      • value = ""
    • Beispielergebnis: test
      • Mit Eingabe: {trim; test }
      • Mit Eingabe: {trim; test}
  • {trimStart}: Trims the given string at the beginning

    • Argumente:
      • value = ""
    • Beispielergebnis: test
      • Mit Eingabe: {trimStart; test}
  • {trimEnd}: Trims the given string at the end

    • Argumente:
      • value = ""
    • Beispielergebnis: test
      • Mit Eingabe: {trimEnd;test }
  • {substring}: Returns a part of the given string

    • Argumente:
      • value = ""
      • start = 0
      • end = value.length
    • Beispielergebnis: test
      • Mit Eingabe: {substring;test;0;4}
    • Beispielergebnis: tes
      • Mit Eingabe: {substring;test;0;3}
    • Beispielergebnis: <leer>
      • Mit Eingabe: {substring;test;0;0}
    • Beispielergebnis: test
      • Mit Eingabe: {substring;test;0;5}
    • Beispielergebnis: <leer>
      • Mit Eingabe: {substring;test;0;-1}
  • {urlEncode}: URL encodes the given string

    • Argumente:
      • value = ""
    • Beispielergebnis: %20
      • Mit Eingabe: {urlEncode; }
  • {urlDecode}: URL decodes the given string

    • Argumente:
      • value = ""
    • Beispielergebnis: <leer>
      • Mit Eingabe: {urlDecode;%20}
  • {replace}: Replaces the first occurence of the text in the given string

    • Argumente:
      • value
      • search
      • replace = ""
    • Beispielergebnis: test
      • Mit Eingabe: {replace;tezt;z;s}
      • Mit Eingabe: {replace;text;x;s}
  • {replaceAll}: Replaces all occurences of the text in the given string

    • Argumente:
      • value
      • search
      • replace = ""
    • Beispielergebnis: test
      • Mit Eingabe: {replaceAll;text;x;s}
  • {randomItem}: Picks the given amount of items from a list separated by ,

    • Argumente:
      • items = "Hello,World"
      • amount = 1
      • separator = ","
  • {repeat}: Repeats the given text the given amount of times

    • Argumente:
      • value
      • times = 2
    • Beispielergebnis: testtest
      • Mit Eingabe: {repeat;test;2}