Chr (10) chr (13) chr (32)

Source: Internet
Author: User
Chr (13) is a carriage return; Chr (10) is a line break; chr (32) is a space character; chr (13) is a carriage return; 9 \ 34 is a tab, not sure?
(Example: replace all carriage returns with <br/>
# Replace (foo, Chr (13), "<br/>", "ALL ")#
)
All tables about ASCII code: http://www.asciitable.com
<Cfscript>
/**
* An enhanced Article section Formatting Function
* Use) & nbsp; replace the TAB, supporting multiple systems
* Rewrite and multiOS support by Nathan Dintenfas.
*
* @ Param string The string to format. (Required)
* @ Return Returns a string.
* @ Author Ben Forta (ben@forta.com)
* @ Version 3, June 26,200 2
*/
Function Paragrap1hFormat2 (str ){
// First make Windows style into Unix style
Str = replace (str, chr (13) & chr (10), chr (10), "ALL ");
// Now make Macintosh style into Unix style
Str = replace (str, chr (13), chr (10), "ALL ");
// Now fix tabs
Str = replace (str, chr (9), "& nbsp;", "ALL ");
// Now return the text formatted in HTML
Return replace (str, chr (10), "<br/>", "ALL ");
}
</Cfscript>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.