str function

Syntax

string str(value)

Parameters

Returns

String calculated from value.

Description

This function converts value to the corresponding string value.

Related

Examples

str(1.69)
# result = "1.69"	

str(1.69 - 69/100)
# result = "1"	

str(001)
# result = "1"	

str(true)
# result = "true"	

Copyright ©2008-2024 Esri R&D Center Zurich. All rights reserved.