Update to Version 3

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.

Specials run until May, 20 2012

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

Social Networks

Please click this facebook button if you want to share this page with friends

Share

(english) (german)


Please click this Google +1

button to give Sisulizer a positive vote in Googles new voting system.

Thank you very much.

Selected Customers

Software Localization News

Version 3 Build 331 released

4/23/2012

The new build comes with many new features. [more]

Top News: Version 3

11/9/2011

Sisulizer version 3 out now. [more]

Tips & Tricks

9/30/2011

You are looking for tips and tricks around Sisulizer? [more]

Delphi Tage

9/8/2011

Delphi Tage 2011 in Cologne are sold out! [more]

Download Build 321

8/12/2011

Please us a download manager for your download. [more]

Escape character

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:
n Line feed character (LF, 0x0A)
r Carriage return character (CR, 0x0D)
t Tab character (0x09)
0 Null character (0x00)
\ \ character
Sisulizer Sisulizer escaping is used. # is the escape character. Following code are used:
l Line feed character (LF, 0x0A)
c Carriage return character (CR, 0x0D)
n Any combination of LF/CR characters
t Tab character (0x09)
0 Null character (0x00)
# # character

Examples

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.