function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Shwetal DesaiShwetal Desai 

Convert String to boolean

Is it possible to convert 'true' or 'false' to boolean true / false?
if yes then how can i do this?


Thanks in advance
ShamSham
Try Boolean.valueOf() method..
Shwetal DesaiShwetal Desai
Tried that one.. its not working......
RickyGRickyG
Shwetal -

I think you want to go from "true" or "false" to a boolean, not the other way around, right?  You should be able to do that with a trigger to set a boolean field based on the string value.

Hope this helps.