Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

 

Converting To String

Assigning a non-string value to a string variable implicitly converts the value to string.

Code Block
int i = 12; string s = i; //int to string
decimal d = 12.34; string s = d; //decimal to string

 

 

 

Converting From String

To convert from string to another primitive, use the fromString(s) BIFs available on the corresponding data type namespace.

 

Code Block
languagejava
titleto int
string s = "12"; int i = Integer:fromString(s);
Code Block
languagejava
titleto decimal
decimal d = Decimal:fromString("12.34");
Code Block
languagejava
titleto uuid
uuid id = Uuid:fromString(user._id);
Code Block
languagejava
linenumberstrue
date d = Date:fromString("2017-01-02");

For converting from string to datetime, use Date:fromTimeString(s):

Code Block
datetime dt = Date:fromTimeString("2017-1-20 08:45:12 GMT");

 

 

 

Additional Mentions and References

 

Excerpt
hiddentrue

fromString(s) | implicit conversion