zoukankan      html  css  js  c++  java
  • textarea \n \r\n issue

    October 05, 2005

    How are newlines represented in an HTML textarea ?

    Writing about web page http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13.4

    OK, this is just a blatant attempt at stuffing a result into google, since it took me a while to find this out. I hope someone else finds it useful.

    If you have an HTML text area, and you want to parse the content of said textarea as a list of lines, you might be wondering what character you need to look for to indicate a line break. \n ? \r\n? That wierd thing that macOS 9 does?

    Contrary to what you might expect, the answer is not "it depends on the platform". The merciful W3C (blessed be their spec.) decreed it to be constant regardless of what hare-brained operating system choice your user has made.

    If your form's enctype is application/x-www-form-urlencoded (the default) , then the answer is '%0D%0A' i.e. CRLF, url-encoding. If the enctype is multipart/form-data, then it's an unencoded CRLF. This behaviour, it turns out, is inherited from the MIME specification.

    Since any binding library worth it's salt will decode the url-encoding for you, the string that you should look for is CR-LF. This is not the same as the default line separator (LF) on any unix box – if you use that, you'll end up with a spurious \r character at the end of each line of parsed text.


    - 3 comments by 1 or more people Not publicly viewable

    1. You beat me to it :) I wanted to blog this ;)

      11 Oct 2005, 13:25

    2.  

      Mike McNally

      An interesting problem here is that, what you note being true, the count of characters Javascript reports in your textarea may not be the same as the actual length received on the server when the form is submitted. Firefox (on Linux, at least, and I think also on Windows though I'm not sure) counts line separators as being one character long, because it apparently uses a lone linefeed character as the separator. The browser does, however, expand that linefeed to a CRLF pair when submitting the value.

      12 Oct 2005, 01:00

    3.  

      Larsson

      Thanks so much. I have been struggling with a post request and could not understand the lack of output. This was the answer I have sought

      25 Apr 2007, 20:23


    Add a comment

    You are not allowed to comment on this entry as it has restricted commenting permissions.

    Trackbacks

  • 相关阅读:
    华为路由器配置 FTP
    交换机远程 Telnet设置
    动态路由协议 OSPF
    动态路由协议 RIP
    Fiddler 为手机设置代理上网
    路由优先级、路由链路冗余
    关闭137,138,139危险端口
    VNC远程连接一直在Attempting to reconnect to VNC server...
    ManageEngine卓豪旗下Site24x7云监控2020年"成绩单"
    实现无缝的终端安全的5大模块
  • 原文地址:https://www.cnblogs.com/lexus/p/1849069.html
Copyright © 2011-2022 走看看