Is there a way to force a container to store all values as strings? I am using str2con in order to split text strings into containers. Any time a field with numbers only comes up, it is stored as an int, which isn't a huge problem. What IS a big problem is when the string of numbers exceeds the integer size and the number becomes something different.
Consider the following strings:
"Text1,Text2" Container becomes: str "Text1", str "Text2"
"1111111111,Text" Container becomes: int 1111111111, str "Text"
"8888888888,Text" Container becomes: int -961633963, str "Text" (THIS IS BAD)
Any suggestions for how to get around this?
Thanks