Sisulizer version 3 is a paid update recommended for all Sisulizer customers.
Still using Sisulizer 1.x or Sisulizer 2008/2010?
Time to update to version 3 now and profit from all new features in version 3.
Offers are for commercial and industrial customers only.
All prices are net.
Complete Price Sheet.
Not sure which edition is the right one? Visit our Edition Comparison
4/23/2012
The new build comes with many new features. [more]
11/9/2011
Sisulizer version 3 out now. [more]
9/30/2011
You are looking for tips and tricks around Sisulizer? [more]
9/8/2011
Delphi Tage 2011 in Cologne are sold out! [more]
8/12/2011
Please us a download manager for your download. [more]
Specifies the escape method how line feed, carriage return and other special characters are encoded. Possible values are:
| Value | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| None | No escape characters are used. | ||||||||||||
| C/C++ | C/C++ compatible escaping is used. \ is the escape character. Following code are used:
|
||||||||||||
| Sisulizer | Sisulizer escaping is used. # is the escape character. Following code are used:
|
Let's have few example. First we have row where the original value is "This is a sample string" and Finnish value is "Tämä on esimerkkimerkkijono". The following table contains exported lines of that row when a tab character is used as a delimiter character.
| Quote | Sisulizer escapes | C/C++ escapes |
|---|---|---|
| None | This is a sample string<tab>Tämä on esimerkkimerkkijono | This is a sample string<tab>Tämä on esimerkkimerkkijono |
| Single | 'This is a sample string'<tab>'Tämä on esimerkkimerkkijono' | 'This is a sample string"<tab>"Tämä on esimerkkimerkkijono' |
| Double | "This is a sample string"<tab>"Tämä on esimerkkimerkkijono" | "This is a sample string"<tab>"Tämä on esimerkkimerkkijono" |
This string does not contain any special character. This is why the result will be same using both encodings. <tab> means single tab character (0x09).
The second sample row contains two lines "First line<cr><lf>Second line". Exported lines will be
| Quote | Sisulizer escapes | C/C++ escapes |
|---|---|---|
| None | First line#c#lSecond line<tab>Ensimmäinen rivi#nToinen rivi | First line\r\nSecond line<tab>Ensimmäinen rivi\r\nToinen rivi |
| Single | 'First line#c#lSecond line'<tab>'Ensimmäinen rivi#nToinen rivi' | 'First line\r\nSecond line'<tab>'Ensimmäinen rivi\r\nToinen rivi' |
| Double | "First line#c#lSecond line"<tab>"Ensimmäinen rivi#nToinen rivi" | "First line\r\nSecond line"<tab>"Ensimmäinen rivi\r\nToinen rivi" |
Escaped characters are marked with bold typeface. Now output is different when using Sisulizer and C/C++ escapes. In Sisulizer escaping the actual new line characters (CR and LF) are only to the original column. The Finnish column contains only #n at the place of new line characters. This makes translation of the file easier and less error prone.
The final sample row, "This is 'single' and "double" quote sample", contains quote characters (' and ").
| Quote | Sisulizer escapes | C/C++ escapes |
|---|---|---|
| None | This is 'single' and "double" quote sample | This is 'single' and "double" quote sample |
| Single | 'This is ''single'' and "double" quote sample' | 'This is \'single\' and "double" quote sample' |
| Double | "This is 'single' and ""double"" quote sample" | "This is 'single' and \"double\" quote sample" |
The above example contains only original (English) column. Sisulizer escaping doubles the quote character inside quotes. C/C++ escaping escapes it.