Are multi-line strings allowed in JSON?

前端 未结 9 1314
醉酒成梦
醉酒成梦 2020-11-22 04:21

Is it possible to have multi-line strings in JSON?

It\'s mostly for visual comfort so I suppose I can just turn word wrap on in my editor, but I\'m just kinda curious

相关标签:
9条回答
  • 2020-11-22 04:32

    Write property value as a array of strings. Like example given over here https://gun.io/blog/multi-line-strings-in-json/. This will help.

    We can always use array of strings for multiline strings like following.

    {
        "singleLine": "Some singleline String",
        "multiline": ["Line one", "line Two", "Line Three"]
    } 
    

    And we can easily iterate array to display content in multi line fashion.

    0 讨论(0)
  • 2020-11-22 04:34

    Check out the specification! The JSON grammar's char production can take the following values:

    • any-Unicode-character-except-"-or-\-or-control-character
    • \"
    • \\
    • \/
    • \b
    • \f
    • \n
    • \r
    • \t
    • \u four-hex-digits

    Newlines are "control characters" so, no, you may not have a literal newline within your string. However you may encode it using whatever combination of \n and \r you require.

    0 讨论(0)
  • 2020-11-22 04:34

    This is a really old question, but I came across this on a search and I think I know the source of your problem.

    JSON does not allow "real" newlines in its data; it can only have escaped newlines. See the answer from @YOU. According to the question, it looks like you attempted to escape line breaks in Python two ways: by using the line continuation character ("\") or by using "\n" as an escape.

    But keep in mind: if you are using a string in python, special escaped characters ("\t", "\n") are translated into REAL control characters! The "\n" will be replaced with the ASCII control character representing a newline character, which is precisely the character that is illegal in JSON. (As for the line continuation character, it simply takes the newline out.)

    So what you need to do is to prevent Python from escaping characters. You can do this by using a raw string (put r in front of the string, as in r"abc\ndef", or by including an extra slash in front of the newline ("abc\\ndef").

    Both of the above will, instead of replacing "\n" with the real newline ASCII control character, will leave "\n" as two literal characters, which then JSON can interpret as a newline escape.

    0 讨论(0)
  • 2020-11-22 04:34

    While not standard, I found that some of the JSON libraries have options to support multiline Strings. I am saying this with the caveat, that this will hurt your interoperability.

    However in the specific scenario I ran into, I needed to make a config file that was only ever used by one system readable and manageable by humans. And opted for this solution in the end.

    Here is how this works out on Java with Jackson:

    JsonMapper mapper = JsonMapper.builder()
       .enable(JsonReadFeature.ALLOW_UNESCAPED_CONTROL_CHARS)
       .build()
    
    0 讨论(0)
  • 2020-11-22 04:39

    Try this, it also handles the single quote which is failed to parse by JSON.parse() method and also supports the UTF-8 character code.

        parseJSON = function() {
            var data = {};
            var reader = new FileReader();
            reader.onload = function() {
                try {
                    data = JSON.parse(reader.result.replace(/'/g, "\""));
                } catch (ex) {
                    console.log('error' + ex);
                }
            };
            reader.readAsText(fileSelector_test[0].files[0], 'utf-8');
    }
    
    0 讨论(0)
  • 2020-11-22 04:40

    JSON does not allow real line-breaks. You need to replace all the line breaks with \n.

    eg:

    "first line second line"

    can saved with:

    "first line\nsecond line"

    Note:

    for Python, this should be written as:

    "first line\\nsecond line"

    where \\ is for escaping the backslash, otherwise python will treat \n as the control character "new line"

    0 讨论(0)
提交回复
热议问题