Stand with Ukraine flag
Try it now Pricing
Cloud
Europe
Documentation > Other Features > ThingsBoard Expression Language (TBEL)
Getting Started
Devices Library Guides API FAQ
On this page

ThingsBoard Expression Language (TBEL)

ThingsBoard supports user-defined functions (UDF) for data processing in the Rule Engine and Data Converters. The original programming language for the UDF is JavaScript. It is popular, well-known, and simple. We plan to support JavaScript forever. Nevertheless, we have decided to provide an alternative to JavaScript. You may find our motivation below.

Motivation

ThingsBoard is written in Java and currently uses Java 11. There are two ways to execute the JS function in ThingsBoard:

A) use remote JS Executor microservice written in Node.js. It is the default way for ThingsBoard to run in a cluster/microservices mode;

B) use local JS Executor powered by Nashorn JS engine that runs inside the JVM. It is the default way for ThingsBoard while deployed in monolithic mode.

The Nashorn JS engine is now deprecated and is removed from Java 16. It is also relatively slow. Some users already called Nashorn to be the platform’s kryptonite. That is why it was absolutely clear that we need a replacement to Nashorn. Many users suggested GraalVM for its built-in polyglot feature, but it was not suitable for us for multiple reasons. The most important reason is security and the ability to control every aspect of the UDF execution. Besides, most UDFs are relatively simple functions that transform or filter data, and we want to find a more effective way to execute them.

Our search for existing Script/Expression Language (EL) implementations led us to the MVEL. The ThingsBoard Expression Language (TBEL) is basically a fork of MVEL with some important security constraints, built-in memory management, and frequently used helper functions that are specific to ThingsBoard.

TBEL vs Nashorn

TBEL is lightweight and is super fast compared to Nashorn. For example, the execution of 1000 simple scripts like: “return msg.temperature > 20” took 16 seconds for Nashorn and 12 milliseconds for MVEL. More than 1000 times faster. We have forked the TBEL codebase and added additional security improvements to ensure no CPU or memory abuse. So, no need to run Nashorn with the sandbox environment.

Of course, TBEL is not as powerful as JS, but the majority of the use cases do not need this.

The one who requires JS flexibility may use remote JS Executors as usual.

TBEL vs JS Executors

JS Executors is a separate microservice based on Node.js.

It is powerful and supports the latest JS language standards. However, there is a noticeable overhead to execute JS functions remotely. The Rule Engine and JS executors communicate through the queue. This process consumes resources and introduces a relatively small latency (a few ms). The latter may become a problem if you have multiple rule nodes chained into one rule chain.

TBEL execution consumes much less resources and has no extra latency for inter-process communications.

TBEL Language Guide

TBEL is used to evaluate expressions written using Java syntax. Unlike Java however, TBEL is dynamically typed (with optional typing), meaning that the source code does not require type qualification. The TBEL expression can be as simple as a single identifier, or as complicated as an expression with method calls and inline collections.

Simple Property Expression

1
msg.temperature

In this expression, we simply have a single identifier (msg.temperature), which by itself, is what we refer to in TBEL as a property expression, in that the only purpose of the expression is to extract a property out of a variable or context object.

TBEL can even be used for evaluating a boolean expression. Assuming you are using TBEL in the Rule Engine to define a simple script filter node:

1
return msg.temperature > 10;

Like Java, TBEL supports the full gamut of operator precedence rules, including the ability to use bracketing to control execution order.

1
return (msg.temperature > 10 && msg.temperature < 20) || (msg.humidity > 10 && msg.humidity < 60);

Multiple statements

You may write scripts with an arbitrary number of statements using the semi-colon to denote the termination of a statement. This is required in all cases except in cases where there is only one statement, or for the last statement in a script.

1
2
3
var a = 2;
var b = 2;
return a + b

Note the lack of a semi-colon after ‘a + b’. New lines are not substitutes for the use of the semi-colon in MVEL.

Value Coercion

MVEL’s type coercion system is applied in cases where two incomparable types are presented by attempting to coerce the ‘’right’‘value to that of the type of the’‘left’’ value, and then vice-versa.

For example:

1
"123" == 123;

This expression is true in TBEL because the type coercion system will coerce the untyped number 123 to a String in order to perform the comparison.

Maps

TBEL allows you to create Maps. We use our own implementation of the Map to control memory usage. That is why TBEL allows only inline creation of maps. Most common operation with the map:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Create new map
var map = {"temperature": 42, "nested" : "508"};
// Change value of the key
map.temperature = 0;

// Check existance of the key
if(map.temperature != null){
// <you code>
}
// Null-Safe expressions using ?
if(map.?nonExistingKey.smth > 10){
// <you code>
}
// Iterate through the map
foreach(element : map.entrySet()){
    // Get the key
    element.getKey();
    //or 
    element.key;
    
    // Get the value
    element.getValue();
    //or 
    element.value;
}

// get Info
var size = map.size();                           // return  2 
var memorySize = map.memorySize();               // return 24 

map.humidity = 73;                              // return nothing => map = {"temperature": 0, "nested": "508", "humidity": 73}
map.put("humidity", 73);                        // return nothing => map ={"temperature": 0, "nested": "508", "humidity": 73}
map.putIfAbsent("temperature1", 73);            // return nothing => map = {"temperature": 0, "nested": "508", "humidity": 73, "temperature1": 73}

//change Value   
map.temperature = 73;                           // return nothing => map = {"temperature": 73, "nested": "508", "humidity": 73, "temperature1": 73}        
var put1 = map.put("temperature", 73);          // return put1 = 73 => map = {"temperature": 73, "nested": "508", "humidity": 73, "temperature1": 73}
var putIfAbsent1 = map.putIfAbsent("temperature", 73); // return putIfAbsent1 = 73 => map = {"temperature": 73, "nested": "508", "humidity": 73, "temperature1": 73}       
var replace = map.replace("temperature", 56);          // return 73 => map = {"temperature": 56, "nested": "508", "humidity": 73, "temperature1": 73}       
var replace1 = map.replace("temperature", 56, 42);     // return true => map = {"temperature": 42, "nested": "508", "humidity": 73, "temperature1": 73}       
var replace3 = map.replace("temperature", 48, 56);     // return false => map = {"temperature": 42, "nested": "508", "humidity": 73, "temperature1": 73}       

// remove Entry from the map by key
map.remove("temperature");                             // return nothing => map = {"nested": "508", "humidity": 73, "temperature1": 73}

// get Keys/Values  
var keys = map.keys();                                 // return ["nested", "humidity", "temperature1"]      
var values = map.values();                             // return ["508", 73, 73]      

// sort
map.sortByKey();                                       // return nothing => map = {"humidity": 73, "nested": "508", "temperature1": 73}                                      
var sortByValue = map.sortByValue();                   // return nothing => map = {"humidity": 73, "temperature1": 73, "nested": "508"}

// add new Entry/(new key/new value)
var mapAdd = {"test": 12, "input" : {"http": 130}};
map.putAll(mapAdd);

Lists

TBEL allows you to create Lists. We use our own implementation of the List to control memory usage of the script. That is why TBEL allows only inline creation of lists. For example:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Create new list
var list = ["A", "B", "C"];
// List elelement access
list[0];
// Size of the list
list.size();
// Foreach 
foreach (item : list) { 
    var smth = item;
}
// For loop 
for (var i =0; i < list.size; i++) { 
    var smth = list[i];
}

In our own list implementation The Tbel library uses most of the standard JavaScript methods from the JavaScript Array.

Examples:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
var list = ["A", "B", "C", "B", "C", "hello", 34567];
var listAdd = ["thigsboard", 4, 67];

    // add/push
var addAll = list.addAll(listAdd);         // return true    => list = ["A", "B", "C", "B", "C", "hello", 34567, "thigsboard", 4, 67]
var addAllI = list.addAll(2, listAdd);     // return true    => list = ["A", "B", "thigsboard", 4, 67, "C", "B", "C", "hello", 34567, "thigsboard", 4, 67]
var add = list.add(3, "thigsboard");       // return true    => list = ["A", "B", "thigsboard", "thigsboard", 4, 67, "C", "B", "C", "hello", 34567, "thigsboard", 4, 67]
var push = list.push("thigsboard");        // return true    => list = ["A", "B", "thigsboard", "thigsboard", 4, 67, "C", "B", "C", "hello", 34567, "thigsboard", 4, 67, "thigsboard"]
var unshift = list.unshift("r");           // return nothing => list = ["r", "A", "B", "thigsboard", "thigsboard", 4, 67, "C", "B", "C", "hello", 34567, "thigsboard", 4, 67, "thigsboard"]
var unshift = ["Q", 4];
list.unshift(unshift); // return nothing => list = [[["Q", 4], "r", "B", "thigsboard", "thigsboard", 4, 67, "C", "B", "C", "hello", 34567, "thigsboard", 4, 67, "thigsboard"]
    // delete  
var removeI = list.remove(2);              // return "A" => list = [["Q", 4], "r", "B", "thigsboard", "thigsboard", 4, 67, "C", "B", "C", "hello", 34567, "thigsboard", 4, 67, "thigsboard"]    
var removeC = list.remove("C");            // return true => list = [["Q", 4], "r", "B", "thigsboard", "thigsboard", 4, 67, "B", "C", "hello", 34567, "thigsboard", 4, 67, "thigsboard"] 
var shift = list.shift();                  // return ["Q", 4] => list = ["r", "B", "thigsboard", "thigsboard", 4, 67, "B", "C", "hello", 34567, "thigsboard", 4, 67, "thigsboard"]
var pop = list.pop();                      // return "thigsboard" => list =  ["r", "B", "thigsboard", "thigsboard", 4, 67, "B", "C", "hello", 34567, "thigsboard", 4, 67]
var splice3 = list.splice(3);              // return ["thigsboard", 4, 67, "B", "C", "hello", 34567, "thigsboard", 4, 67] => list = ["r", "B", "thigsboard"]
var splice2 = list.splice(2, 2);           // return ["thigsboard"] => list = ["r", "B"]
var splice1_4 = list.splice(1, 4, "start", 5, "end"); // return ["B"]  => list =  ["r", "start", 5, "end"]

    // change
var set = list.set(3, "65");                 // return "end"" => list =  ["r", "start", 5, "65"]
list[1] = "98";                              // return nothing => list = ["r", "98", 5, "65"] 
list[0] = 2096;                              // return nothing => list = [2096, "98", 5, "65"]

list.sort();                                 // return nothing => list = [5, "65", "98", 2096] (sort Asc)
list.sort(true);                             // return nothing => list = [5, "65", "98", 2096] (sort Asc)
list.sort(false);                            // return nothing => list = [2096, "98", "65", 5] (sort Desc)
list.reverse();                              // return nothing => list = [5, "65", "98", 2096]
var fill = list.fill(67);                    // return new List [67, 67, 67, 67] => list = [67, 67, 67, 67]
var fill4 = list.fill(4, 1);                 // return new List [67, 4, 4, 4] => list = [67, 4, 4, 4]
var fill4_6 = list.fill(2, 1, 4);            // return new List [67, 2, 2, 2] => list = [67, 2, 2, 2]

    // return new List/new String 
var toSorted = list.toSorted();            // return new List [2, 2, 2, 67] (sort Asc) 
var toSorted_true = list.toSorted(true);   // return new List [2, 2, 2, 67] (sort Asc)  
var toSorted_false = list.toSorted(false); // return new List [67, 2, 2, 2] (sort Desc)
var toReversed = list.toReversed();        // return new List [2, 2, 2, 67] 
var slice = list.slice();                  // return new List [67, 2, 2, 2]  
var slice4 = list.slice(3);                // return new List [2]   
var slice1_5 = list.slice(0,2);            // return new List [67, 2]  
var with1 = list.with(1, 67);               // return new List [67, 67, 2, 2, 2] => list = [67, 2, 2, 2]
var concat = list.concat(listAdd);         // return new List [67, 2, 2, 2, "thigsboard", 4, 67] => list = [67, 2, 2, 2]
var join = list.join();                    // return new String "67,2,2,2" => list = [67, 2, 2, 2]        
var toSpliced2 = list.toSpliced(1, 0, "Feb"); // return new List [67, "Feb", 2, 2, 2] => list = [67, 2, 2, 2] 
var toSpliced0_2 = list.toSpliced(0, 2);     // return new List [2, 2] => list = [67, 2, 2, 2] 
var toSpliced2_2 = list.toSpliced(2, 2);     // return new List [67, 2] => list = [67, 2, 2, 2] 
var toSpliced4_5 = list.toSpliced(2, 4, "start", 5, "end"); // return new List[67, 2, "start", 5, "end"] => list = [67, 2, 2, 2] 

    // get Info        
var length = list.length();                 // return  4 
var memorySize = list.memorySize();         // return 28 
var indOf1 = list.indexOf("B", 1);          // return -1  
var indOf2 = list.indexOf(2, 2);            // return 2  
var sStr =  list.validateClazzInArrayIsOnlyString(); // return false
Doc info icon

Note:
sort/toSorted operations:

  • If the list consists only of a numeric value (12234 or a string in the form of a numeric value “12234”) - the sort/toSorted… operation is used as a type of numeric value;
  • If the list consists of one or more non-numeric values (“123K45” or “FEB” or {345: “re56”}) - the sort/toSorted… operation is interpreted as sorting the String;

Arrays

TBEL allows you to create Arrays. To control the memory usage, we permit only arrays of primitive types. String arrays are automatically converted to lists.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Create new array
var array = new int[3];
array[0] = 1;
array[1] = 2;
array[2] = 3;

str = "My String";
str[0]; // returns 'M';

function sum(list){
    var result = 0;
    for(var i = 0; i < list.length; i++){
        result += list[i];
    }
    return result;
};

sum(array); // returns 6


array[3] = 4; // Will cause ArrayIndexOutOfBoundsException

Literals

A literal is used to represent a fixed-value in the source of a particular script.

String literals

String literals may be denoted by single or double quotes.

1
2
"This is a string literal"
'This is also string literal'

String escape sequences:

  • \ - Double escape allows rendering of single backslash in string.
  • \n - Newline
  • \r - Return
  • \u#### - Unicode character (Example: \uAE00)
  • ### - Octal character (Example: \73)

Numeric literals

Integers can be represented in decimal (base 10), octal (base 8), or hexadecimal (base 16).

A decimal integer can be expressed as any number that does not start with zero.

1
125 // decimal

An octal representation of an integer is possible by prefixing the number with a zero, followed by digits ranging from 0 to 7.

1
0353 // octal

Hexidecimal is represented by prefixing the integer with 0x followed by numbers ranging from 0-9..A-F.

1
0xAFF0 // hex

A floating point number consists of a whole number and a factional part denoted by the point/period character, with an optional type suffix.

1
2
3
10.503 // a double
94.92d // a double
14.5f // a float

You can represent *BigInteger* and *BigDecimal* literals by using the suffixes B and I (uppercase is mandatory).

1
2
104.39484B // BigDecimal
8.4I // BigInteger

Boolean literals are represented by the reserved keywords true and false.

The null literal is denoted by the reserved keywords null or nil.

Using Java Classes

The TBEL implementation allows the usage of some Java classes from the java.util and java.lang packages. For example:

1
var foo = Math.sqrt(4);
Convert Number to Hexadecimal/Octal/Binary String
  • Byte
1
2
3
4
var b16 = Integer.toString(0x1A, 16); // Hexadecimal "1a"
var b10 = Integer.toString(0x1A, 10); // Decimal     "26"
var b8 = Integer.toString(0x1A, 8);   // Octal       "32"
var b2 = Integer.toString(0x1A, 2);   // Binary     "11010"
  • Integer
1
2
3
4
var i16 = Integer.toString(-255, 16); // Hexadecimal "-ff"
var i10 = Integer.toString(-255, 10); // Decimal     "-255"
var i8 = Integer.toString(-255, 8);   // Octal       "-377"
var i2 = Integer.toString(-255, 2);   // Binary      "-11111111"
  • Float
1
2
3
var f0 =7823764.8374;  
var f16 = Float.toHexString(f0);           // Hexadecimal "0x1.dd8654p22" 
var f10 = f0.toString();                   // Decimal     "7823764.8374"
  • Long
1
2
3
4
var l16 = Long.toString(9223372036854775807, 16); // Hexadecimal "7fffffffffffffff"
var l10 = Long.toString(9223372036854775807, 10); // Decimal     "9223372036854775807"
var l8 = Long.toString(9223372036854775807, 8);   // Octal       "777777777777777777777"
var l2 = Long.toString(9223372036854775807, 2);   // Binary      "111111111111111111111111111111111111111111111111111111111111111"
  • Double
1
2
3
var dd0 = 99993219.156013e-002;
var dd16 = Double.toHexString(dd0);              // Hexadecimal ""0x1.e83f862142b5bp19"
var dd10 = String.format("%.8f",dd0);            // Decimal     "999932,19156013"

For the security reasons, the usage of those classes is constrained. You are able to call both static and non-static methods, but you are not able to assign the instance of the class to the variable:

1
2
3
var list = ["A", "B", "C"];
java.util.Collections.reverse(list); // allowed
list = new java.util.ArrayList(); // Not allowed

To simplify migration from JavaScript, we introduced a JSON class with static methods JSON.stringify and JSON.parse, which function similarly to their JavaScript counterparts.

For example:

1
2
var metadataStr = JSON.stringify(metadata);
var metadata = JSON.parse(metadataStr);

For the same purpose:

  • Added decodeToJson method.
  • Added Dateclass, which can be used without specifying a package name.
  • In the tbel library, the map and list classes have extended support for their primary methods, similar to Java.

Flow Control

If-Then-Else

TBEL supports full, C/Java-style if-then-else blocks. For example:

1
2
3
4
5
6
7
if (temperature > 0) {
   return "Greater than zero!";
} else if (temperature == -1) { 
   return "Minus one!";
} else { 
   return "Something else!";
}

Ternary statements

Ternary statements are supported just as in Java:

1
temperature > 0 ? "Yes" : "No";

Nested ternary statements are also supported.

Foreach

One of the most powerful features in TBEL is its foreach operator. It is similar to the foreach operator in Java 1.5 in both syntax and functionality. It accepts two parameters separated by a colon. The first is the local variable for the current element, and the second is the collection or array to be iterated.

For example:

1
2
3
4
sum = 0;
foreach (n : numbers) {
   sum+=n;
}

Since TBEL treats Strings as iterable objects, you can iterate a String (character by character) with a foreach block:

1
2
3
4
str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
foreach (c : str) {
   //do something 
}

For Loop

1
2
3
4
var sum = 0;
for (var i =0; i < 100; i++) { 
   sum += i;
}

Do While, Do Until

do while and do until are implemented in TBEL, following the same convention as Java, with until being the inverse of while.

1
2
3
4
do { 
   x = something();
} 
while (x != null);

… is semantically equivalent to …

1
2
3
4
do {
   x = something();
}
until (x == null);

While, Until

TBEL implements standard while, with the addition of the inverse until.

1
2
3
while (isTrue()) {
   doSomething();
}

… or …

1
2
3
until (isFalse()) {
   doSomething();
}

Helper functions

btoa

Creates a Base64-encoded ASCII string from a binary string (i.e., a string in which each character in the string is treated as a byte of binary data)

Syntax:

String btoa(String input)

Parameters:

  • input: string - The binary string to encode.

Return value:

Returns an ASCII string that represents the Base64 encoding of the input.

Examples:

1
2
var encodedData = btoa("Hello, world"); // encode a string
var decodedData = atob(encodedData); // decode the string

atob

Decodes a string of data which has been encoded using Base64 encoding.

Syntax:

String atob(String input)

Parameters:

  • input: string - A binary string containing base64-encoded data.

Return value:

An ASCII string containing decoded data from encodedData.

Examples:

1
2
var encodedData = btoa("Hello, world"); // encode a string
var decodedData = atob(encodedData); // decode the string

toFixed

Rounds the double value towards “nearest neighbor”.

Syntax:

double toFixed(double value, int precision)

Parameters:

  • value: double - the double value.
  • precision: int - the precision.

Return value:

Rounded double

Examples:

1
2
return toFixed(0.345, 1); // returns 0.3
return toFixed(0.345, 2); // returns 0.35

stringToBytes

Converts input binary string to the list of bytes.

Syntax:

*List stringToBytes(String input[, String charsetName])*

Parameters:

  • input: Binary string - string in which each character in the string is treated as a byte of binary data.
  • charsetName: String - optional Charset name. UTF-8 by default.

Return value:

A list of bytes.

Examples with: Binary string

1
2
3
4
5
6
7
8
var base64Str = "eyJoZWxsbyI6ICJ3b3JsZCJ9"; // Base 64 representation of the '{"hello": "world"}' 
var bytesStr = atob(base64Str);
return stringToBytes(bytesStr); // Returns [123, 34, 104, 101, 108, 108, 111, 34, 58, 32, 34, 119, 111, 114, 108, 100, 34, 125]

var inputStr = "hello world";
return stringToBytes(inputStr);  // Returns  [104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100]
var charsetStr = "UTF8"
return stringToBytes(inputStr, charsetStr);  // Returns  [104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100]

Examples with: Object from Json as String

1
2
3
4
5
var dataMap = {};
dataMap.inputStr = "hello world";
var dataJsonStr = JSON.stringify(dataMap);
var dataJson = JSON.parse(dataJsonStr);
return stringToBytes(dataJson.inputStr); // Returns  [104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100]

bytesToString

Creates a string from the list of bytes

Syntax:

*String bytesToString(List bytesList[, String charsetName])*

Parameters:

  • bytesList: List of Bytes - A list of bytes.
  • charsetName: String - optional Charset name. UTF-8 by default.

Return value:

A string constructed from the specified byte list.

Examples:

1
2
var bytes = [0x48,0x45,0x4C,0x4C,0x4F];
return bytesToString(bytes); // Returns "HELLO"

decodeToString

Alias for the bytesToString

decodeToJson

Decodes a list of bytes to the JSON document.

Syntax:

*String decodeToJson(List bytesList)*

Parameters:

  • bytesList: List of Bytes - A list of bytes.

Return value:

A JSON object or primitive.

Examples:

1
2
3
4
var base64Str = "eyJoZWxsbyI6ICJ3b3JsZCJ9"; // Base 64 representation of the '{"hello": "world"}'
var bytesStr = atob(base64Str);
var bytes = stringToBytes(bytesStr);
return decodeToJson(bytes); // Returns '{"hello": "world"}'

isTypeInValue

isBinary

Validates whether a string represents a binary (base-2) value.

Syntax:

int isBinary(String str)

Parameters:

  • str: String - The string to be checked if it represents a binary number. UTF-8 is the default character set.

Return value:

An integer value indicating the result:

  • ‘2’ if the string is binary.
  • ‘-1’ if the string is not binary.

Examples:

1
2
return isBinary("1100110"); // Returns 2
return isBinary("2100110"); // Returns -1
isOctal

Validates whether a string represents an octal (base-8) value.

Syntax:

int isOctal(String str)

Parameters:

  • str: String - The string to be checked if it represents a octal number. UTF-8 is the default character set.

Return value:

An integer value indicating the result:

  • ‘8’ if the string is octal.
  • ‘-1’ if the string is not octal.

Examples:

1
2
return isOctal("4567734"); // Returns 8
return isOctal("8100110"); // Returns -1
isDecimal

Validates whether a string represents a decimal (base-10) value.

Syntax:

int isDecimal(String str)

Parameters:

  • str: String - The string to be checked if it represents a decimal number. UTF-8 is the default character set..

Return value:

An integer value indicating the result:

  • ‘10’ if the string is decimal.
  • ‘-1’ if the string is not decimal.

Examples:

1
2
return isDecimal("4567039"); // Returns 10
return isDecimal("C100110"); // Returns -1
isHexadecimal

Validates whether a string represents a hexadecimal (base-16) value.

Syntax:

int isHexadecimal(String str)

Parameters:

  • str: String - The string to be checked if it represents a hexadecimal number. UTF-8 is the default character set.

Return value:

An integer value indicating the result:

  • ‘16’ if the string is hexadecimal.
  • ‘-1’ if the string is not hexadecimal.

Examples:

1
2
return isHexadecimal("F5D7039"); // Returns 16
return isHexadecimal("K100110"); // Returns -1

encodeDecodeUri

encodeURI
Doc info icon

Note:
The encodeURI() function:

  • The encodeURI() function escapes characters as UTF-8 code units, with each octet encoded in the format %XX, left-padded with 0 if necessary. Lone surrogates in UTF-16 do not represent valid Unicode characters.
  • The Tbel library includes most standard JavaScript methods, such as encodeURI().
  • encodeURI() escapes all characters except:
1
AZ az 09 - _ . ! ~ * ' ( ) ; / ? : @ & = + $ , #

Syntax:

String encodeURI(String uri)

Parameters:

  • uri: String - A string to be encoded as a URI.

Return value:

A new string representing the provided string encoded as a URI.

Examples:

1
2
var uriOriginal = "-_.!~*'();/?:@&=+$,#ht://example.ж д a/path with spaces/?param1=Київ 1&param2=Україна2";
return encodeURI(uriOriginal); // Returns "-_.!~*'();/?:@&=+$,#ht://example.%D0%B6%20%D0%B4%20a/path%20with%20spaces/?param1=%D0%9A%D0%B8%D1%97%D0%B2%201&param2=%D0%A3%D0%BA%D1%80%D0%B0%D1%97%D0%BD%D0%B02"
decodeURI
Doc info icon

Note:
The decodeURI() function:

  • The decodeURI() function decodes a Uniform Resource Identifier (URI) that was previously encoded using encodeURI() or a similar method.
  • The Tbel library incorporates most standard JavaScript methods, including decodeURI().

Syntax:

String decodeURI(String uri)

Parameters:

  • uri: String - A complete, encoded Uniform Resource Identifier.

Return value:

A new string that represents the unencoded version of the specified encoded Uniform Resource Identifier (URI).

Examples:

1
2
var uriEncode = "-_.!~*'();/?:@&=+$,#ht://example.%D0%B6%20%D0%B4%20a/path%20with%20spaces/?param1=%D0%9A%D0%B8%D1%97%D0%B2%201&param2=%D0%A3%D0%BA%D1%80%D0%B0%D1%97%D0%BD%D0%B02";
return decodeURI(uriEncode); // Returns "-_.!~*'();/?:@&=+$,#ht://example.ж д a/path with spaces/?param1=Київ 1&param2=Україна2"

raiseError

Syntax:

void raiseError(String message)

Parameters:

  • message: String - Info about Exception message.

Return value:

new RuntimeException with msg = message;

Examples:

1
2
3
4
5
var message = "frequency_weighting_type must be 0, 1 or 2.";
return raiseError(message);        // Returns "frequency_weighting_type must be 0, 1 or 2."
var value = 4;
message = "frequency_weighting_type must be 0, 1 or 2. A value of " + value + " is invalid.";
return raiseError(message, value); // Returns "frequency_weighting_type must be 0, 1 or 2. A value of 4 is invalid."

printUnsignedBytes

Converts List to List

Syntax:

*List printUnsignedBytes(List byteArray)*

Parameters:

  • byteArray: List of byte - the list of byte values, where each integer represents a single byte

Return value:

List

Examples:

1
2
3
4
5
6
7
var hexStrBe = "D8FF";                     // [-40, -1]
var listBe = hexToBytes(hexStrBe);
return printUnsignedBytes(listBe);         // Returns [216, 255]

var hexStrLe = "FFD8";                     // [-1, -40]
var listLe = hexToBytes(hexStrLe);
return printUnsignedBytes(listLe);         // Returns [255, 216]

pad

padStart
  • Pads this string with another string (multiple times, if needed) until the resulting string reaches the given length.
  • The padding is applied from the start of this string.

Syntax:

String padEnd(String str, int targetLength, char padString)

Parameters:

  • str: String - String values pads this string with a given string (repeated, if needed)
  • targetLength: List of byte - The length of the resulting string once the current str has been padded. If the value is less than or equal to str.length, then str is returned as-is.
  • padString: List of byte - The string to pad the current str with. If padString is too long to stay within the targetLength, it will be truncated from the end.

Return value:

String

Examples:

1
2
3
4
5
6
7
8
var str = "010011";
return padStart(str, 8, '0');                           // Returns  "00010011"
var str ="1001010011";        
return padStart(str, 8, '0');                           // Returns  "1001010011"
return padStart(str, 16, '*');                          // Returns  "******1001010011"
var fullNumber = "203439900FFCD5581";
var last4Digits = fullNumber.substring(11);
return padStart(last4Digits, fullNumber.length(), '*'); // Returns "***********CD5581"
padEnd
  • Pads this string with a given string (repeated, if needed) so that the resulting string reaches a given length.
  • The padding is applied from the end of this string.

Syntax:

String padEnd(String str, int targetLength, char padString)

Parameters:

  • str: String - String values pads this string with a given string (repeated, if needed)
  • targetLength: List of byte - The length of the resulting string once the current str has been padded. If the value is less than or equal to str.length, the current string will be returned as-is.
  • padString: List of byte - The string to pad the current str with. If padString is too long to stay within targetLength, it will be truncated: for left-to-right languages the left-most part and for right-to-left languages the right-most will be applied.

Return value:

String

Examples:

1
2
3
4
5
6
7
8
9
10
var str = "010011";
padEnd(str, 8, '0');                           // Returns  "01001100"
        
var str ="1001010011";        
padEnd(str, 8, '0');                           // Returns  "1001010011"        
padEnd(str, 16, '*');                          // Returns  "1001010011******"
        
var fullNumber = "203439900FFCD5581";
var last4Digits = fullNumber.substring(11);
padEnd(last4Digits, fullNumber.length(), '*'); // Returns "203439900FF******"

numberToRadixString

intToHex
longToHex
floatToHex
doubleToHex

Converts input number (int, long, float, double) to hexString.

Syntax:

String intToHex(Integer i[, boolean bigEndian, boolean pref, int len]) String longToHex(Long l[, boolean bigEndian, boolean pref, int len]) String floatToHex(Float f[, boolean bigEndian]) String doubleToHex(Double d[, boolean bigEndian])

Parameters:

  • i, l, f, d: Number - Format: Integer, Long, Float, Double.
  • bigEndian: boolean - optional, the big-endian (BE) byte order if true, little-endian (LE) otherwise. Default: true (BE).
  • pref: boolean - optional, the format output with "0x". Default: false
  • len: int - optional, the number of bytes of the number to convert to text.

Return value:

A string in HexDecimal format.

Examples:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var i = 0x7FFFFFFF;                             // (2147483647);
intToHex(i, true, true);                        // Returns "0x7FFFFFFF"
intToHex(171, true, false);                     // Returns "AB"
intToHex(0xABCDEF, false, true, 4);             // Returns "0xCDAB"
intToHex(0xABCD, false, false, 2);              // Returns "AB"

longToHex(9223372036854775807, true, true);     // Returns "0x7FFFFFFFFFFFFFFF"
longToHex(0x7A12BCD3, true, true, 4);           // Returns "0xBCD3"
longToHex(0x7A12BCD3, false, false, 4);         // Returns "127A"

floatToHex(123456789.00);                       // Returns "0x4CEB79A3"
floatToHex(123456789.00, false);                // Returns "0xA379EB4C"

doubleToHex(1729.1729d);                        // Returns "0x409B04B10CB295EA"
doubleToHex(1729.1729d, false);                 // Returns "0xEA95B20CB1049B40"
intLongToRadixString

Converts input number (int, long) to radix String (default Dec).

Syntax:

String intLongToRadixString(Long number[, int radix, boolean bigEndian, boolean pref])

Parameters:

  • number: Number - Format: Long.
  • radix: int - optional radix to use when parsing to string format(BinaryString, OctalString, DecimalString, HexDecimalString). Default: DecimalString.
  • bigEndian: boolean - optional the big-endian (BE) byte order if true, little-endian (LE) otherwise. Default: true (BE).
  • pref: boolean - optional format output with "0x". Default: false

Return value:

A string in BinaryString, OctalString, DecimalString, HexDecimalString format.

Examples:

1
2
3
4
5
6
7
8
9
intLongToRadixString(58, 2);                         // Returns "00111010"
intLongToRadixString(13158, 8);                      // Returns "31546"
intLongToRadixString(-13158, 8);                     // Returns "1777777777777777746232"
intLongToRadixString(-13158, 10);                    // Returns ":"-13158"
intLongToRadixString(13158, 16);                     // Returns "3366"
intLongToRadixString(-13158, 16);                    // Returns "FFCC9A"
intLongToRadixString(9223372036854775807, 16);       // Returns "7FFFFFFFFFFFFFFF"
intLongToRadixString(9223372036854775807, 2);        // Returns "0111111111111111111111111111111111111111111111111111111111111111"
intLongToRadixString(-13158, 16, true, true);        // Returns "0xFFCC9A"  

parseHex

parseHexToInt

Converts the hex string to integer.

Syntax:

int parseHexToInt(String hex[, boolean bigEndian])

Parameters:

  • hex: string - the hex string with big-endian byte order.
  • bigEndian: boolean - optional the big-endian (BE) byte order if true, little-endian (LE) otherwise.

Return value:

Parsed integer value.

Examples:

1
2
3
4
parseHexToInt("BBAA");        // Returns 48042
parseHexToInt("BBAA", true);  // Returns 48042
parseHexToInt("AABB", false); // Returns 48042
parseHexToInt("BBAA", false); // Returns 43707
parseLittleEndianHexToInt

Alias for parseHexToInt(hex, false)

Syntax:

int parseLittleEndianHexToInt(String hex)

parseBigEndianHexToInt

Alias for parseHexToInt(hex, true)

Syntax:

int parseBigEndianHexToInt(String hex)

parseHexToFloat

Converts the hex string to float from HexString.

Syntax:

Float parseHexToFloat(String hex[, boolean bigEndian])

Parameters:

  • hex: string - the hex string with big-endian byte order.
  • bigEndian: boolean - optional the big-endian (BE) byte order if true, little-endian (LE) otherwise.

Return value:

Parsed float value.

Examples:

1
2
3
4
parseHexToFloat("41EA62CC");         // Returns 29.29824f
parseHexToFloat("41EA62CC", true);   // Returns 29.29824f
parseHexToFloat("41EA62CC", false);  // Returns -5.948442E7f
parseHexToFloat("CC62EA41", false);  // Returns 29.29824f
parseLittleEndianHexToFloat

Alias for parseHexToFloat(hex, false)

Syntax:

float parseLittleEndianHexToFloat(String hex)

parseBigEndianHexToFloat

Alias for parseBigEndianHexToFloat(hex, true)

Syntax:

float parseBigEndianHexToFloat(String hex)

parseHexIntLongToFloat
Doc info icon

Note:
eg “0x0A” for 10.0f:

  • In this method, we process it as an integer.

Converts the hex string to float from HexString.

Syntax:

Float parseHexIntLongToFloat(String hex, boolean bigEndian)

Parameters:

  • hex: string - the hex string with big-endian byte order.
  • bigEndian: boolean - the big-endian (BE) byte order if true, little-endian (LE) otherwise.

Return value:

Parsed float value.

Examples:

1
2
3
4
5
6
return parseHexIntLongToFloat("0x0A", true);         // Returns 10.0f
return parseHexIntLongToFloat("0x0A", false);        // Returns 10.0f
return parseHexIntLongToFloat"0x00000A", true);      // Returns 10.0f
return parseHexIntLongToFloat("0x0A0000", false);    // Returns 10.0f
return parseHexIntLongToFloat("0x000A0A", true);     // Returns 12570.0f
return parseHexIntLongToFloat("0x0A0A00", false);    // Returns 2570.0f
parseHexToDouble

Converts the hex string to Double.

Syntax:

int parseHexToDouble(String hex[, boolean bigEndian])

Parameters:

  • hex: string - the hex string with big-endian byte order.
  • bigEndian: boolean - optional the big-endian (BE) byte order if true, little-endian (LE) otherwise.

Return value:

Parsed double value.

Examples:

1
2
3
4
return parseHexToDouble("409B04B10CB295EA");            // Returns 1729.1729
return parseHexToDouble("409B04B10CB295EA" false);      // Returns -2.7208640774822924E205
return parseHexToDouble("409B04B10CB295EA" true);       // Returns 1729.1729
return parseHexToDouble("EA95B20CB1049B40" false);      // Returns 1729.1729
parseLittleEndianHexToDouble

Alias for parseHexToDouble(hex, false)

Syntax:

double parseLittleEndianHexToDouble(String hex)

parseBigEndianHexToDouble

Alias for parseBigEndianHexToDouble(hex, true)

Syntax:

double parseBigEndianHexToDouble(String hex)

hexToBytes

Converts the hex string to list of integer values, where each integer represents single byte.

Syntax:

*List hexToBytes(String hex)*

Parameters:

  • hex: string - the hex string with big-endian byte order.

Return value:

Parsed list of integer values.

Examples:

1
return hexToBytes("BBAA"); // Returns [-69, -86]

parseBytes

bytesToHex

Converts the list of integer values, where each integer represents a single byte, to the hex string.

Syntax:

*String bytesToHex(List bytes)* *String bytesToHex(byte[] bytes)*

Parameters:

  • bytes: byte[] or List of integer - the byte array or the list of integer values, where each integer represents a single byte

Return value:

Returns a hexadecimal string.

Examples:

1
2
3
4
var bytes = [0xBB, 0xAA];
return bytesToHex( bytes); // Returns "BBAA"
var list = [-69, 83];
return bytesToHex(list);   // Returns "BB53"
parseBytesToInt

Converts a byte array with the given offset to an int, length, and optional byte order.

Syntax:

*int parseBytesToInt([byte[] or List ] data[, int offset, int length, boolean bigEndian])*

Parameters:

  • data: byte[] or List of Byte - the byte array.
  • offset: int - optional, the offset in the array.
  • length: int - optional, the length in bytes. Less then or equal to 4.
  • bigEndian: boolean - optional, LittleEndian if false, BigEndian otherwise.

Return value:

integer value.

Examples:

1
2
3
4
var bytes = [0xAA, 0xBB, 0xCC, 0xDD];
return parseBytesToInt(bytes, 0, 3); // Returns 11189196 in Decimal or 0xAABBCC  
return parseBytesToInt(bytes, 0, 3, true); // Returns 11189196 in Decimal or 0xAABBCC  
return parseBytesToInt(bytes, 0, 3, false); // Returns 13417386 in Decimal or 0xCCBBAA
parseBytesToLong

Converts a byte array with the given offset to a long, length, and optional byte order.

Syntax:

*int parseBytesToInt([byte[] or List ] data[,int offset, int length, boolean bigEndian])*

Parameters:

  • data: byte[] or List of Byte - the byte array.
  • offset: int - optional, the offset in the array.
  • length: int - optional, the length in bytes. Less then or equal to 4.
  • bigEndian: boolean - optional, LittleEndian if false, BigEndian otherwise.

Return value:

long value.

Examples:

1
2
3
4
var longValByte = [64, -101, 4, -79, 12, -78, -107, -22];
return parseBytesToLong(longValByte, 0, 8);         // Returns 4655319798286292458L  == 0x409B04B10CB295EAL  
return parseBytesToLong(longValByte, 0, 8, false);  // Returns -1543131529725306048L == 0xEA95B20CB1049B40L  

parseBytesToFloat
Doc info icon

Note:
eg “0x0A” for 1.4E-44f:

  • In this method, we process it as an float.

Converts a byte array with the given offset to a floating-point number, length, and optional byte order.

Syntax:

*int parseBytesToFloat([byte[] or List ] data[, int offset, int length, boolean bigEndian])*

Parameters:

  • data: byte[] or List of Byte - the byte array.
  • offset: int - optional, the offset in the array.
  • length: int - optional, the length in bytes. Less then or equal to 4.
  • bigEndian: boolean - optional, LittleEndian if false, BigEndian otherwise.

Return value:

float value.

Examples:

1
2
3
4
5
6
7
8
9
10
11
12
13
var bytes = [0x0A];
return parseBytesToFloat(bytes);                       // Returns 1.4E-44f  
var floatValByte = [0x41, 0xEA, 0x62, 0xCC];
return parseBytesToFloat(floatValByte, 0);             // Returns 29.29824f  
return parseBytesToFloat(floatValByte, 0, 2, false);   // Returns 8.4034E-41f 
return parseBytesToFloat(floatValByte, 0, 2, true);    // Returns 2.3646E-41f 
return parseBytesToFloat(floatValByte, 0, 3, false);   // Returns 9.083913E-39f  
return parseBytesToFloat(floatValByte, 0, 3, true);    // Returns 6.053388E-39f  
return parseBytesToFloat(floatValByte, 0, 4, false);   // Returns -5.948442E7f  
var floatValList = [65, -22, 98, -52];
return parseBytesToFloat(floatValList, 0);             // Returns 29.29824f  
return parseBytesToFloat(floatValList, 0, 4, false);   // Returns -5.948442E7f 

parseBytesIntToFloat
Doc info icon

Note:
eg “0x0A” for 10.0f, “0x0A00” for 2560.0f:

  • In this method, we process it as an integer.
  • Converts a byte array to a floating-point number equal to the value that would be found if the hexadecimal string were converted to an Integer number.

Converts a byte array with the given offset to a floating-point number, length, and optional byte order.

Syntax:

*int parseBytesToFloat([byte[] or List ] data[, int offset, int length, boolean bigEndian])*

Parameters:

  • data: byte[] or List of Byte - the byte array.
  • offset: int - optional, the offset in the array.
  • length: int - optional, the length in bytes. Less then or equal to 4.
  • bigEndian: boolean - optional, LittleEndian if false, BigEndian otherwise.

Return value:

float value.

Examples:

1
2
3
4
5
6
7
var intValByte = [0x00, 0x00, 0x00, 0x0A];
return parseBytesIntToFloat(intValByte, 3, 1, true);     // Returns 10.0f
return parseBytesIntToFloat(intValByte, 3, 1, false);    // Returns 10.0f
return parseBytesIntToFloat(intValByte, 2, 2, true);     // Returns 10.0f
return parseBytesIntToFloat(intValByte, 2, 2, false);    // Returns 2560.0f
return parseBytesIntToFloat(intValByte, 0, 4, true);     // Returns 10.0f 
return parseBytesIntToFloat(intValByte, 0, 4, false);    // Returns 1.6777216E8f

Examples (latitude, longitude):

1
2
3
4
5
6
var dataAT101 = "0x01756403671B01048836BF7701F000090722050000";
var byteAT101 = hexToBytes(dataAT101);
var offset = 9;
return parseBytesIntToFloat(byteAT101, offset, 4, false) / 1000000;     // Returns 24.62495f
return parseBytesIntToFloat(byteAT101, offset + 4, 4, false) / 1000000; // Returns 118.030576f

parseBytesLongToDouble
Doc info icon

Note:
eg “0x0A” for 10.0d, “0x0A00” for 2’560.0d, “0x0A0A0A0A” for 168’430’090.0d:

  • In this method, we process it as an long.
  • Converts a byte array to a floating-point number equal to the value that would be found if the hexadecimal string were converted to an Long number.
  • Using double has enough precision for accurate lat/lon down to inches for 6-7 decimal places.
  • The 6th decimal place for lat/lon is for sub-foot accuracy.

Converts a byte array with the given offset to a double, length, and optional byte order.

Syntax:

*int parseBytesToDouble([byte[] or List ] data[, int offset, int length, boolean bigEndian])*

Parameters:

  • data: byte[] or List of Byte - the byte array.
  • offset: int -optional, the offset in the array.
  • length: int - optional, the length in bytes. Less then or equal to 4.
  • bigEndian: boolean - optional, LittleEndian if false, BigEndian otherwise.

Return value:

double value.

Examples (latitude, longitude):

1
2
3
4
5
6
7
var coordinatesAsHex = "0x32D009423F23B300B0106E08D96B6C00";
var coordinatesasBytes = hexToBytes(coordinatesAsHex);
var offset = 0;
var factor = 1e15;
return parseBytesLongToDouble(coordinatesasBytes, offset, 8, false) / factor;     // Returns 50.422775429058610d, latitude
return parseBytesLongToDouble(coordinatesasBytes, offset + 8, 8, false) / factor; // Returns 30.517877378257072d, longitude

bytesToExecutionArrayList

Converts a byte array to an Array List implementation of a byte array with the given offset, length, and optional byte order.

Syntax:

*ExecutionArrayList bytesToExecutionArrayList([byte[] bytes)*

Parameters:

  • bytes: byte[] - the byte array.

Return value:

ExecutionArrayList value.

Examples:

1
2
var bytes = [0xAA, 0xBB, 0xCC, 0xDD];
return bytesToExecutionArrayList(bytes); // Returns ExecutionArrayList<Byte> value with size = 4,  includes: [-86, -69, -52, -35]

parseBinaryArray

parseByteToBinaryArray

Converts a byte to binary array.

Parses one byte to binary array from the byte given the optional binLength and endianness.

Syntax:

byte[] parseByteToBinaryArray(byte byteValue[, int binLength, boolean bigEndian])

Parameters:

  • byteValue: byte - the byte value.
  • binLength: int - optional, the length of the output binary array.
  • bigEndian: boolean - optional, LittleEndian if false, BigEndian otherwise.

Return value:

byte[] value.

Examples:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var byteVal = 0x39;
return parseByteToBinaryArray(byteVal);               // Returns byte[8] value => [0, 0, 1, 1, 1, 0, 0, 1]
return parseByteToBinaryArray(byteVal, 3);            // Returns byte[3] value => [0, 0, 1]
return parseByteToBinaryArray(byteVal, 8, false);     // Returns byte[8] value => [1, 0, 0, 1, 1, 1, 0, 0]
return parseByteToBinaryArray(byteVal, 5, false);     // Returns byte[5] value => [1, 0, 0, 1, 1]
return parseByteToBinaryArray(byteVal, 4, false);     // Returns byte[4] value => [1, 0, 0, 1]        
return parseByteToBinaryArray(byteVal, 3, false);     // Returns byte[3] value => [1, 0, 0]

var value = parseByteToBinaryArray(byteVal, 6, false);     // Returns byte[6] value => [1, 0, 0, 1, 1, 1]
var actualLowCurrent1Alarm = value[0];
var actualHighCurrent1Alarm = value[1];
var actualLowCurrent2Alarm = value[2];
var actualHighCurrent2Alarm = value[3];
var actualLowCurrent3Alarm = value[4];
var actualHighCurrent3Alarm = value[5];
parseBytesToBinaryArray

Converts a byte Array to binary Array from the byte Array/List with the given length.

Syntax:

*byte[] parseBytesToBinaryArray([byte[] or List ] byteValue[, int binLength])*

Parameters:

  • byteValue: byte[] or List of Byte - the byte array.
  • binLength: int - optional, the length of the output binary array.

Return value:

byte[] value.

Examples:

1
2
3
4
5
var bytesVal = [0xCE, 0xB2];
return parseByteToBinaryArray(bytesVal);              // Returns byte[16] value => [1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0]
return parseByteToBinaryArray(bytesVal, 15);          // Returns byte[15] value =>    [1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0]
return parseByteToBinaryArray(bytesVal, 14);          // Returns byte[14] value =>       [0, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0]
return parseByteToBinaryArray(bytesVal, 2);           // Returns byte[2]  value =>                                           [1, 0]
parseLongToBinaryArray

Converts a long value to binary Array from the long value with the given length.

Syntax:

byte[] parseLongToBinaryArray(long longValue[, int binLength])

Parameters:

  • longValue: long - the long value.
  • binLength: int - optional, the length of the output binary array.

Return value:

byte[] value.

Examples:

1
2
3
var longValue = 52914L;
return parseByteToBinaryArray(longValue);        // Returns byte[64] value => [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0]
return parseByteToBinaryArray(longValue, 16);    // Returns byte[16] value => [1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0]
parseBinaryArrayToInt

Converts a binary array to an int value from a binary array, optionally specifying an integer offset, length, and byte order.

Syntax:

*int parseBinaryArrayToInt([byte[] or List ] data[, int offset, int length])*

Parameters:

  • data: byte[] or List of Byte - the byte array.
  • offset: int - optional, the offset in the array.
  • length: int - optional, the length in bytes.

Return value:

int value.

Examples:

1
2
return parseByteToBinaryArray([1, 0, 0, 1, 1, 1, 1, 1]);                   // Returns -97
var actualVolt =  parseByteToBinaryArray([1, 0, 0, 1, 1, 1, 1, 1], 1, 7);  // Returns 31

parseNumber

parseInt

Converts input string to integer.

Syntax:

Integer parseInt(String str[, String radix])

Parameters:

  • str: string - the String containing the integer representation to be parsed.
  • radix: String - optional radix to be used while parsing string.

Return value:

An integer value.

Examples:

1
2
3
4
5
6
7
8
9
10
11
12
13
return parseInt("0");               // Returns 0
return parseInt("473");             // Returns 473
return parseInt("+42");             // Returns 42
return parseInt("-0", 10);          // Returns 0
return parseInt("-0xFF");           // Returns -255        
return parseInt("-FF", 16);         // Returns -255
return parseInt("1100110", 2);      // Returns 102
return parseInt("2147483647", 10);  // Returns 2147483647
return parseInt("-2147483648", 10); // Returns -2147483648
return parseInt("2147483648", 10);  // throws a NumberFormatException
return parseInt("99", 8);           // throws a NumberFormatException
return parseInt("Kona", 10);        // throws a NumberFormatException
return parseInt("Kona", 27);        // Returns 411787
parseLong

Converts input string to long.

Syntax:

Long parseLong(String str[, String radix])

Parameters:

  • str: string - the String containing the long representation to be parsed.
  • radix: String - optional radix to be used while parsing string.

Return value:

A long value.

Examples:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
return parseLong("0");                          // Returns 0L
return parseLong("473");                        // Returns 473L
return parseLong("+42");                        // Returns 42L
return parseLong("-0", 10);                     // Returns 0L
return parseLong("-0xFFFF");                    // Returns -65535L        
return parseLong("-FFFF", 16);                  // Returns -65535L
return parseLong("11001101100110", 2);          // Returns 13158L
return parseLong("777777777777777777777", 8);   // Returns 9223372036854775807L
return parseLong("KonaLong", 27);               // Returns 218840926543L
return parseLong("9223372036854775807", 10);    // Returns 9223372036854775807L
return parseLong("-9223372036854775808", 10);   // Returns -9223372036854775808L
return parseLong("9223372036854775808", 10);    //throws a NumberFormatException
return parseLong("0xFGFFFFFF", 16);             // throws a NumberFormatException
return parseLong("FFFFFFFF", 16);               // throws a NumberFormatException
return parseLong("1787", 8);                    // throws a NumberFormatException
return parseLong("KonaLong", 10);               // throws a NumberFormatException
return parseLong("KonaLong", 16);               // throws a NumberFormatException
parseFloat

Converts input string to float.

Syntax:

Integer parseFloat(String str)

Parameters:

  • str: string - the string to be parsed.

Return value:

A float value.

Examples:

1
return parseFloat("4.2"); // Returns 4.2
parseDouble

Converts input string to double.

Syntax:

Integer parseDouble(String str)

Parameters:

  • str: string - the string to be parsed.

Return value:

A double precision value.

Examples:

1
return parseDouble("4.2"); // Returns 4.2

base64

base64ToHex

Decodes the Base64 string, to hex string.

Syntax:

String base64ToHex(String input)

Parameters:

  • input: String - the Base64 string.

Return value:

Hex string

Examples:

1
return base64ToHex("Kkk="); // Returns "2A49"
bytesToBase64

Encodes a byte array into a Base64 string.

Syntax:

String bytesToBase64(byte[] bytes)

Parameters:

  • bytes: List of integer - the list of integer values, where each integer represents a single byte.

Return value:

Base64 string.

Examples:

1
return bytesToBase64([42, 73]); // Returns "Kkk="
base64ToBytes

Decodes a Base64 string into a byte array.

Syntax:

byte[] base64ToBytes(String input)

Parameters:

  • input: String - the Base64 string.

Return value:

Byte array.

Examples:

1
return base64ToBytes("Kkk="); // Returns [42, 73]

toFlatMap

Iterates recursive over the given object and creates a single level json object.
If the incoming message contains arrays, the key for transformed value will contain index of the element.

Syntax:

1
2
3
4
Map<String, Object> toFlatMap(Map<String, Object> json)
Map<String, Object> toFlatMap(Map<String, Object> json, boolean pathInKey)
Map<String, Object> toFlatMap(Map<String, Object> json, List<String> excludeList)
Map<String, Object> toFlatMap(Map<String, Object> json, List<String> excludeList, boolean pathInKey)

Parameters:

  • json Map<String, Object> - input JSON object.
  • excludeList List<String> - optional List with keys, for exclude from result. Default: [].
  • pathInKey boolean - optional Add path to keys. Default: true.
doc warn icon

If parameter pathInKey is set to false - some keys can be overwritten by newly found values!
Recommended to use with caution with objects that contains similar keys on different levels.

Return value:

JSON Object

Examples:

Input:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
    "key1": "value1",
    "key2": 12,
    "key3": {
        "key4": "value4",
        "key5": 34,
        "key6": [{
                "key7": "value7"
            },
            {
                "key8": "value8"
            },
            "just_string_value_in_array",
            56
        ],
        "key9": {
            "key10": ["value10_1", "value10_2", "value10_3"]
        }
    },
    "key_to_overwrite": "root_value",
    "key11": {
        "key_to_overwrite": "second_level_value"
    }
}
toFlatMap(json)

Expected behavior - get the single level object with paths in keys.

1
return toFlatMap(json);

Output:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
    "key1": "value1",
    "key2": 12,
    "key3.key4": "value4",
    "key3.key5": 34,
    "key3.key6.0.key7": "value7",
    "key3.key6.1.key8": "value8",
    "key3.key6.2": "just_string_value_in_array",
    "key3.key6.3": 56,
    "key3.key9.key10.0": "value10_1",
    "key3.key9.key10.1": "value10_2",
    "key3.key9.key10.2": "value10_3",
    "key_to_overwrite": "root_value",
    "key11.key_to_overwrite": "second_level_value"
}
toFlatMap(json, pathInKey)

Expected behavior - get the single level object without paths in keys.
key_to_overwrite should contain the value from key11.key_to_overwrite.

1
return toFlatMap(json, false);

Output:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
    "key1": "value1",
    "key2": 12,
    "key4": "value4",
    "key5": 34,
    "key7": "value7",
    "key8": "value8",
    "key6.2": "just_string_value_in_array",
    "key6.3": 56,
    "key10.0": "value10_1",
    "key10.1": "value10_2",
    "key10.2": "value10_3",
    "key_to_overwrite": "second_level_value"
}

As you can see, key_to_overwrite is second_level_value instead of root_value.

toFlatMap(json, excludeList)

Expected behavior - get the single level object with paths in keys, without keys key1 and key3.

1
return toFlatMap(json, ["key1", "key3"]);

Output:

1
2
3
4
5
{
    "key2": 12,
    "key_to_overwrite": "root_value",
    "key11.key_to_overwrite": "second_level_value"
}

As you can see, key1 and key3 were removed from output. Excluding works on any level with incoming keys.

toFlatMap(json, excludeList, pathInKey)

Expected behavior - get the single level object without paths in keys, without keys key2 and key4.
key_to_overwrite should contain the value from key11.key_to_overwrite.

1
return toFlatMap(json, ["key2", "key4"], false);

Output:

1
2
3
4
5
6
7
8
9
10
11
12
{
    "key1": "value1",
    "key5": 34,
    "key7": "value7",
    "key8": "value8",
    "key6.2": "just_string_value_in_array",
    "key6.3": 56,
    "key10.0": "value10_1",
    "key10.1": "value10_2",
    "key10.2": "value10_3",
    "key_to_overwrite": "second_level_value"
}

As you can see, key2 and key4 was excluded from the output and key_to_overwrite is second_level_value.

tbDate:

The Tbel library uses all standard JavaScript methods in the JavaScript Date, such as “toLocaleString”, “toISOString” and other methods;

Input format data:
  • String with Optional: pattern, locale, time zone
  • ints (year, month and etc) with Optional: pattern, locale, time zone

Locale default: UTC;

Time zone Id default: ZoneId.systemDefault();

Return value:

a Date object as a string, using locale default: “UTC”, time zone Id default: ZoneId.systemDefault().

String with Optional: pattern, locale, time zone

Examples:

  • Input data format: Only one - String (Variable the Time Zone in the input parameter), without pattern:
1
2
3
4
5
assuming: "2007-12-03T10:15:30.00Z"           TZ = UTC
           "2007-12-03T10:15:30.00"           TZ = ZoneId.systemDefault() instant
           "2007-12-03T10:15:30.00-04"        TZ = "-04"
           "2007-12-03T10:15:30.00+02:00"     TZ = "+02"
           "2007-12-03T10:15:30.00+03:00:00"  TZ = "+03"
1
2
var d = new Date("2023-08-06T04:04:05.123Z");        // TZ => "UTC"
var dIso = d.toISOString();                          //  return "2023-08-06T04:04:05.123Z"   ZoneId "UTC"
1
2
var d = new Date("2023-08-06T04:04:05.123");        // TZ => Default, ZoneId "Europe/Kyiv" = "+03:00"
var dIso = d.toISOString();                         //  return "2023-08-06T01:04:05.123Z"   ZoneId  "Europe/Kyiv" = "+03:00"
1
2
var d = new Date("2023-08-06T04:04:05.00-04");      //  TZ => "-04"
var dIso = d.toISOString();                         //  return "2023-08-06T08:04:05Z"   ZoneId "America/New_York" = "-04:00"
1
2
var d = new Date("2023-08-06T04:04:05.00+02:00");   //  TZ => "+02:00"
var dIso = d.toISOString();                         //  return "2023-08-06T02:04:05Z"   ZoneId "Europe/Berlin" = "+02:00"
1
2
var d = new Date("2023-08-06T04:04:05.00+03:00:00");   //  TZ => "+03:00:00"
var dIso = d.toISOString();                            //  return "2023-08-06T01:04:05Z"   ZoneId  "Europe/Kyiv" = "+03:00"
1
2
3
4
5
assuming RFC-1123 value: "Tue, 3 Jun 2008 11:05:30 GMT"         TZ = UTC
                         "Tue, 3 Jun 2008 11:05:30"             TZ = ZoneId.systemDefault() instant
                         "Tue, 3 Jun 2008 11:05:30 -03"         TZ = "-03"
                         "Tue, 3 Jun 2008 11:05:30 -0200"       TZ = "-02"                   
                         "Tue, 3 Jun 2008 11:05:30 +043056"     TZ = "+04:30:56"          
1
2
var d = new Date("Tue, 3 Jun 2008 11:05:30 GMT");   //  TZ => "GMT"
var dIso = d.toISOString();                         //  return "2008-06-03T11:05:30Z"   ZoneId  "GMT" = "0"
1
2
var d = new Date("Tue, 3 Jun 2008 11:05:30 +043056");   //  TZ => "+043056"
var dIso = d.toISOString();                             //  return "2008-06-03T06:34:34Z"   ZoneId  "????" = "+04:30:56"
  • Input data format: String + Pattern:
1
2
3
var pattern = "yyyy-MM-dd HH:mm:ss.SSSXXX";
var d = new Date("2023-08-06 04:04:05.000Z", pattern);        //  Pattern without TZ => "UTC"
var dIso = d.toISOString();                                   //  return "2008-06-03T08:05:30Z"    ZoneId "UTC" = "00:00"
1
2
3
var pattern = "yyyy-MM-dd HH:mm:ss.SSSXXX";
var d = new Date("2023-08-06 04:04:05.000-04:00", pattern);   // Pattern with TZ => "-04:00"
var dIso = d.toISOString();                                   //  return "2023-08-06T08:04:05Z"    ZoneId "America/New_York" = "-04:00"
1
2
3
var pattern = "yyyy-MM-dd HH:mm:ss.SSS";
var d = new Date("2023-08-06 04:04:05.000", pattern);         //  Pattern without TZ, TZ => Default, ZoneId "Europe/Kyiv" = "+03:00"
var dIso = d.toISOString();                                   //  return "2023-08-06T08:04:05Z"    ZoneId  "Europe/Kyiv" = "+03:00"
  • Input data format: String + Pattern + Locale:
1
2
3
4
var pattern = "hh:mm:ss a, EEE M/d/uuuu";
var d = new Date("09:15:30 PM, So. 10/09/2022", pattern, "de");         //  Pattern without TZ, TZ => Default, ZoneId "Europe/Kyiv" = "+03:00"
var dIso = d.toISOString();                                             //  return "2022-10-09T18:15:30Z"    ZoneId  "Europe/Kyiv" = "+03:00"
var dLocal= d.toLocaleString("de");                                     //  return "09.10.22, 21:15:30"      
1
2
3
4
var pattern = "hh:mm:ss a, EEE M/d/uuuu";
var d = new Date("02:15:30 PM, Sun 10/09/2022", pattern, "en-US");         //  Pattern without TZ, TZ => Default, ZoneId "Europe/Kyiv" = "+03:00"
var dIso = d.toISOString();                                                //  return "2022-10-09T11:15:30Z"    ZoneId  "Europe/Kyiv" = "+03:00"
var dLocal = d.toLocaleString("en-US");                                    //  return "10/9/22, 2:15:30 PM"      
1
2
3
var pattern = "hh:mm:ss a, EEE M/d/uuuu";
var d = new Date("02:15:30 PM, Sun 10/09/2022", pattern, "de");             // return: error. The pattern with input parameter of date does not match the locale
                                                                            // Locale = "de", input parameter "day of the week" is "Sun", should be "So.". 
  • Input data format: String + Pattern + Locale + Time Zone:
1
2
3
4
5
var pattern = "yyyy-MM-dd HH:mm:ss.SSSXXX";
var d = new Date("2023-08-06 04:04:05.000-04:00", pattern, "de", "Europe/Kyiv");    // Pattern with TZ => "-04:00" but `Time Zone` as parameter = "Europe/Kyiv" = "+03:00"
var dIso = d.toISOString();                                                         // return "2023-08-06T01:04:05Z"    ZoneId  "Europe/Kyiv" = "+03:00"
var dLocal_de = d.toLocaleString("de");                                             // return "06.08.23, 04:04:05"     
var dLocal_us = d.toLocaleString("en-US");                                          // return "8/6/23, 4:04:05 AM"      
Ints (year, month and etc) with Optional: time zone
1
2
3
4
var d = new Date(2023, 8, 6, 4, 4, 5);
var dLocal = d.toLocaleString();        //  return "2023-08-06 04:04:05" (Locale: "UTC", ZoneId "Europe/Kyiv")
var dIso = d.toISOString();             //  return 2023-08-06T01:04:05Z"
var dDate = d;                          //  return "неділя, 6 серпня 2023 р. о 04:04:05 за східноєвропейським літнім часом"
1
2
3
4
5
var d = new Date(2023, 8, 6, 4, 4, 5, "Europe/Berlin");
var dLocal = d.toLocaleString();                                    // return "2023-08-06 05:04:05" (Locale: "UTC", ZoneId "Europe/Kyiv")
var dLocal_us = d.toLocaleString("en-us",  "America/New_York");     // return "8/5/23, 10:04:05 PM" (Locale: "en-us", ZoneId "America/New_York")
var dIso = d.toISOString();                                         // return 2023-08-06T02:04:05Z"
var dDate = d;                                                      // return "неділя, 6 серпня 2023 р. о 05:04:05 за східноєвропейським літнім часом"```
locale

Syntax:

String toLocaleString(String locale)

Parameters:

Time zone Id default: ZoneId.systemDefault();

  • locale: string - Language-specific format to use.

Return value:

a Date object as a string, using locale settings, time zone Id default: ZoneId.systemDefault().

Examples: Input date Without TZ (TZ Default = ZoneId.systemDefault())

1
2
3
4
var d = new Date(2023, 8, 6, 4, 4, 5);          //  Parameters (int year, int month, int dayOfMonth, int hours, int minutes, int seconds) => TZ Default = ZoneId.systemDefault();
var dLocal = d.toLocaleString("en-US");         //  return "8/6/23, 4:04:05 AM" (Locale: "en-US")
var dIso = d.toISOString();                     //  return "2023-08-06T01:04:05Z", ZoneId:  Default = ZoneId.systemDefault => "Europe/Kyiv" = "+03:00";
var dDate = d;                                  //  return "неділя, 6 серпня 2023 р. о 04:04:05 за східноєвропейським літнім часом";
1
2
3
4
var d = new Date("2023-08-06T04:04:05.000");     //  Parameter (String 'yyyy-MM-ddThh:mm:ss.ms') => TZ Default = ZoneId.systemDefault():
var dIso = d.toISOString();                      //  return "2023-08-06T01:04:05Z"
var dLocal_de = d.toLocaleString("de");          //  return "06.08.23, 04:04:05"  (Locale: "de",  ZoneId "Europe/Kyiv" = "+03:00")
var dLocal_utc = d.toLocaleString("UTC");        //  return "2023-08-06 04:04:05" (Locale: "UTC", ZoneId "Europe/Kyiv" = "+03:00")

Input date With TZ (TZ = parameter TZ or ‘Z’ equals ‘UTC’)

1
2
3
4
5
var d = new Date(2023, 8, 6, 4, 4, 5, "Europe/Berlin"); //  Parameters (int year, int month, int dayOfMonth, int hours, int minutes, int seconds, TZ) => TZ "Europe/Berlin";
var dIso = d.toISOString();                             //  return "2023-08-06T02:04:05Z";
var dLocal1 = d.toLocaleString("UTC");                  //  return "2023-08-06 05:04:05" (Locale: "UTC",  ZoneId Default = ZoneId.systemDefault => "Europe/Kyiv" = "+03:00");
var dLocal2 = d.toLocaleString("en-us");                //  return "8/6/23, 5:04:05 AM" (Locale: "en-US", ZoneId Default = ZoneId.systemDefault => "Europe/Kyiv" = "+03:00");
var dLocal3 = d.toLocaleString("de");                   // return "06.08.23, 05:04:05"  (Locale: "de",   ZoneId Default = ZoneId.systemDefault => "Europe/Kyiv" = "+03:00");
locale, time zone

Syntax:

String toLocaleString(String locale, String tz)

Parameters:

  • locale: string - Language-specific format to use.
  • tz: string - Id local time zone.

Return value:

a Date object as a string, using locale settings and Id time zone.

Examples:

1
2
3
4
5
var d = new Date(2023, 8, 6, 4, 4, 5, "Europe/Berlin");         //  Parameters (int year, int month, int dayOfMonth, int hours, int minutes, int seconds, TZ) => TZ "Europe/Berlin"
var dIso = d.toISOString();                                     //  return "2023-08-06T02:04:05Z"
var dLocal1 = d.toLocaleString("UTC");                          //  return "2023-08-06 05:04:05" (Locale: "UTC",   ZoneId Default = ZoneId.systemDefault => "Europe/Kyiv" = "+03:00");
var dLocal2 = d.toLocaleString("en-us",  "America/New_York");   //  return "8/5/23, 10:04:05 PM" (Locale: "en-US", ZoneId "America/New_York" = "-04:00")
var dLocal3 = d.toLocaleString("de",  "Europe/Berlin");         //  return "06.08.23, 04:04:05"  (Locale: "de",    ZoneId "Europe/Berlin" =    "+02:00")
local, pattern (With Map options)

Syntax:

String toLocaleString(String locale, String optionsStr)

Parameters:

  • locale: string - Language-specific format to use.
  • pattern: string - Pattern, id time zone, Date/Time string format to use.

Return value:

a Date object as a string, using locale settings, {“timeZone”: “Id time zone”, “dateStyle”: “full/long/medium/short”, “timeStyle”: “full/long/medium/short”, “pattern”: “M/d/yyyy, h:mm:ss a”}.

Examples:

1
2
3
4
5
6
7
var d = new Date("2023-08-06T04:04:05.00Z");         // TZ => "UTC"
var dIso = d.toISOString();                          // return "2023-08-06T04:04:05Z"
var dLocal1 = d.toLocaleString();                    // return "2023-08-06 07:04:05" (Locale: Default "UTC",   ZoneId Default = ZoneId.systemDefault => "Europe/Kyiv" = "+03:00");

var options = {"timeZone":"America/New_York"};       // TZ = "-04:00"
var optionsStr = JSON.stringify(options);       
var dLocal2 = d.toLocaleString("en-US", optionsStr); // "8/6/23, 12:04:05 AM"  ("8/6/23, 00:04:05 AM", Locale:  "en-US",   ZoneId  => "America/New_York" = "-04:00");
1
2
3
4
5
var d = new Date("2023-08-06T04:04:05.000");         // TZ => Default = ZoneId.systemDefault => "Europe/Kyiv" = "+03:00"
var dIso = d.toISOString();                          // return "2023-08-06T01:04:05Z"
var options = {"timeZone":"America/New_York"};
var optionsStr = JSON.stringify(options);
var dLocal1 = d.toLocaleString("en-US", optionsStr); // return "8/5/23, 9:04:05 PM" (Locale:  "en-US",   ZoneId  => "America/New_York" = "-04:00");
1
2
3
4
5
var d = new Date(2023, 8, 6, 4, 4, 5);               // TZ => Default = ZoneId.systemDefault => "Europe/Kyiv" = "+03:00"
var dIso = d.toISOString();                          // return "2023-08-06T01:04:05Z"
var options = {"timeZone":"America/New_York", "pattern": "M-d/yyyy, h:mm=ss a"};
var optionsStr = JSON.stringify(options);
var dLocal1 = d.toLocaleString("en-US", optionsStr); // return "8-5/2023, 9:04=05 PM" (pattern, Locale:  "en-US",   ZoneId  => "America/New_York" = "-04:00");
1
2
3
4
5
6
7
var d = new Date(2023, 8, 6, 4, 4, 5, "UTC");        // TZ => "UTC"
var dIso = d.toISOString();                          // return "2023-08-06T04:04:05Z"       
var options = {"timeZone":"America/New_York","dateStyle":"full","timeStyle":"full"};
var optionsStr = JSON.stringify(options);
var dLocal1 = d.toLocaleString("uk-UA", optionsStr); // return  "неділя, 6 серпня 2023 р. о 00:04:05 за північноамериканським східним літнім часом"
var dLocal2 = d.toLocaleString("en-US", optionsStr); // return  "Sunday, August 6, 2023 at 12:04:05 AM Eastern Daylight Time"
var dLocal3 = d.toLocaleString("de", optionsStr);    // return  "Sonntag, 6. August 2023 um 00:04:05 Nordamerikanische Ostküsten-Sommerzeit"