Aller au contenu

Pleasant.ch

Pleasant.ch
  • Scripting | vbscript

    vbscript-greater-than or equal

    ParLaurent Muller 20 février 20159 février 2026

    OPERATOR:   >= Implemented in version 1.0  >= The >= operator determines if the first expression is greater-than-or-equal the second expression. Code: <% 123 >= 456 %> <% « a » >= « A » %> Output: False True

    Lire la suite vbscript-greater-than or equalContinuer

  • Scripting | vbscript

    vbscript-greater-than

    ParLaurent Muller 20 février 20159 février 2026

    OPERATOR:   > Implemented in version 1.0  > The > operator determines if the first expression is greater-than the second expression. Code: <% 123 > 456 %> <% « a » > « A » %> Output: False True

    Lire la suite vbscript-greater-thanContinuer

  • Scripting | vbscript

    vbscript-equal

    ParLaurent Muller 20 février 20159 février 2026

    OPERATOR:   = Implemented in version 1.0  = The operator is used to assign a value to a variable, or to compare strings and numbers, or to print out the value of a variable. When used for assignment, a single variable on the left side of the = operator is given the value determined by one…

    Lire la suite vbscript-equalContinuer

  • Scripting | vbscript

    vbscript-less-than or equal

    ParLaurent Muller 20 février 20159 février 2026

    OPERATOR:   <= Implemented in version 1.0 <= The <= operator determines if the first expression is less-than-or-equal the second expression. Code: <% 123 <= 456 %> <% « a » <= « A » %> Output: True False

    Lire la suite vbscript-less-than or equalContinuer

  • Scripting | vbscript

    vbscript-less-than

    ParLaurent Muller 19 février 20159 février 2026

    OPERATOR: < Implemented in version 1.0 < The < operator determines if the first expression is less-than the second expression. Code: <% 123 < 456 %> <% « a » < « A » %> Output: True False

    Lire la suite vbscript-less-thanContinuer

  • Scripting | vbscript

    vbscript-plus

    ParLaurent Muller 19 février 20159 février 2026

    OPERATOR: + Implemented in version 1.0 + The + operator has two uses. It is used to add numbers together. It also may be used to concatenate (combine) strings together. Note it is usually recommended that only the & operator be used for string concatenation. Addition: Code: <% total = 5.678 + 0.234 + 23.1…

    Lire la suite vbscript-plusContinuer

  • Scripting | vbscript

    vbscript-exponentiate

    ParLaurent Muller 19 février 20159 février 2026

    OPERATOR: ^ Implemented in version 1.0 ^ The ^ operator, which is sometimes called « hat », is used to raise a number to a power. Code: <% power = 2^2 %> Output: 4 Code: <% power = 4.819^1.753 %> Output: 15.7479305850686

    Lire la suite vbscript-exponentiateContinuer

  • Scripting | vbscript

    vbscript-integer-divide

    ParLaurent Muller 19 février 20159 février 2026

    OPERATOR: \ Implemented in version 1.0 \ The \ operator divides two numbers and returns an integer (fixed-point). Each number can be either floating-point or fixed-point. This operator works by rounding the values of the supplied operands to integers (if necessary) before performing the calculation and only returns an integer with no decimal representation (truncated)….

    Lire la suite vbscript-integer-divideContinuer

  • Scripting | vbscript

    vbscript-divide

    ParLaurent Muller 19 février 20159 février 2026

    OPERATOR: / Implemented in version 1.0 / The / operator divides two numbers and returns a floating-point number. Code: <% result = 25.0 / 4.975 %> Output: 5.0251256281407 Code: <% result = 25 / 5 %> Output: 5

    Lire la suite vbscript-divideContinuer

  • Scripting | vbscript

    vbscript-multiply

    ParLaurent Muller 19 février 20159 février 2026

    OPERATOR: & Implemented in version 1.0 & The & operator is the preferred operator for concatenating strings. However, the + operator may also be used for concatenation. Code: <% cheese= » is made of blue cheese. » %> <% sentence= »The moon » & cheese &  » Mice like blue cheese. » %> Output: The moon is made of blue…

    Lire la suite vbscript-multiplyContinuer

Navigation de page

Page précédentePrécédent 1 … 11 12 13 14 Page suivanteSuivante

© 2026 Pleasant.ch - Thème WordPress par Kadence WP