Skyplatform
  • SKYPLATFORM TECHNICAL USER DOCUMENTATION
    • BASICS OF SKYPLATFORM
      • WHAT IS SKYPLATFORM?
      • SKYPLATFORM DASHBOARD
      • TEMPLATE AND PROJECT CREATION
        • Project Creation
      • PROJECT INFORMATION
      • ADD DEVICES AND GROUPS
        • Create Device
        • Create Group
      • DEVICE DETAILS
      • INTRODUCTION TO COMMISSIONING
        • Commissioning Screen Definitions
      • CREATING A NEW PROJECT
        • Installation of Add-On Cards
      • KNX ADD-ON PROGRAMMING
        • KNX SHUTTER PROGRAMMING SAMPLE
    • PLUGINS
      • DASHBOARD WIDGETS
        • SAMPLE
      • SECURITY
        • SAMPLE
      • BUILT IN PERIPHERALS
        • SAMPLE
      • DIAGNOSTIC
      • TEMPERATURE CONTROLLER
        • SAMPLE
      • UI OBJECTS
        • SAMPLE
      • DIALOGS
        • SAMPLE
      • SCHEDULE
        • SAMPLE
      • FUNCTIONS
        • SAMPLE
      • CONSTANT
        • SAMPLE
      • MATH
        • SAMPLE
      • STRING
        • SAMPLE
      • LOGIC
        • SAMPLE
      • INTERCOM
      • MEDIA
        • SAMPLE
      • CAMERAS
        • SAMPLE
      • WEB
        • SAMPLE
      • EXTERNAL APPs
      • SCRIPTS
        • SAMPLE
Powered by GitBook
On this page
  1. SKYPLATFORM TECHNICAL USER DOCUMENTATION
  2. PLUGINS

STRING

PreviousSAMPLENextSAMPLE

Last updated 8 months ago

Plugin
Name
Description

Upper Case

The Upper Case converts the input text to uppercase letters and outputs the transformed text.

Lower Case

The Lower Case converts the input text to lowercase letters and outputs the transformed text.

Concat

The Concat combines multiple pieces of information from the input into a single output.

Index Of

The Index of is used to find the index number of a specific character or expression within the incoming information. For example, in the string each character of this description has an index number, the index number of the character "x" is 4.

Replace

The Replace is used to substitute a specified expression with another expression within the input text.

Starts With

The Starts With checks if the incoming expression begins with the assigned text, the output will be 1; otherwise, the output will be 0.

Ends With

The Ends With checks if the incoming expression concludes with the assigned text, the output will be 1; otherwise, the output will be 0.

Substring

The Substring extracts the characters between two specified positions in the incoming expression and outputs the result.