String to Value Node

String to Value Node

The String to Value node converts a text string into a numerical value. This is useful for parsing numbers from text input, file data, or dynamically generated strings.

The node reads characters from the beginning of the string until a valid number is parsed. If parsing is unsuccessful, the node outputs a floating-point value of 0.

Đầu Vào (Inputs)

Chuỗi Ký Tự/String

The input text string to be converted into a numerical value.

Tính Chất (Properties)

Kiểu Dữ Liệu (Data Type)

The type of numerical value to convert to:

Số Thực (Float):

Converts the text to a floating-point number.

Số Nguyên (Integer):

Converts the text to a 32-bit integer.

Đầu Ra (Outputs)

Value (Giá Trị)

The resulting numerical value after conversion.

Chiều Dài (Length)

The number of characters successfully parsed as part of the number. This indicates where the numeric portion of the string ends, allowing further substring operations.

Một Số Ví Dụ (Examples)

  • Converting the string "3.1415" with Float selected outputs a value of 3.1415 and a length of 6.

  • Converting "42abc" with Integer selected outputs 42 and a length of 2.

  • Converting an invalid string such as "hello" outputs 0 and a length of 0.