Changes between Version 1 and Version 2 of Ticket #596


Ignore:
Timestamp:
10/13/08 22:51:41 (16 years ago)
Author:
Valik
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #596

    • Property Summary changed from String<From/To>ASCII() functions to String<From/To>ASCIIArray() functions
  • Ticket #596 – Description

    v1 v2  
    11There are potential issues with these functions I need to look at.  This is my reminder so I don't forget.
    22
    3 * Allow working with binary data (embedded \0).
     3 * StringFromASCIIArray() should return a binary string if there are embedded '\0' characters.
     4 * StringToASCIIArray() should keep working past any '\0'.
     5 * Allow specifying the encoding (ANSI/UNICODE) for binary data in StringToASCIIArray().  This flag should only work if the type of input is binary.  Strings are treated as UNICODE.
     6 * Document that when creating an array manually for StringFromASCIIArray() the character values must be specified in UNICODE, not ANSI.  That means extended ANSI characters (Those > 127) will need converted to their UNICODE values. 
     7 * Document that StringToASCIIArray() already returns UNICODE values.