mrjones1425 Posted December 3, 2021 Share Posted December 3, 2021 I am curious if there is a character limit to what can be stored in a string variable. If a condition is set in the programming tab to check if two string variables are equal, how many characters are being compared? Quote Link to comment Share on other sites More sharing options...
0 videostorm Posted December 3, 2021 Share Posted December 3, 2021 13 hours ago, mrjones1425 said: I am curious if there is a character limit to what can be stored in a string variable. If a condition is set in the programming tab to check if two string variables are equal, how many characters are being compared? String data types are null terminated. When compared, they are compared up to the first null encountered on either string. (loop starting at index 0, loop till null encountered) Maximum size is platform / language dependent. Quote Link to comment Share on other sites More sharing options...
Question
mrjones1425
I am curious if there is a character limit to what can be stored in a string variable. If a condition is set in the programming tab to check if two string variables are equal, how many characters are being compared?
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.