CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz] ARKANCE | CONTACT - CZ | SK | EN | DE

CAD tip CAD tip # 7812:

Question

CAD 
 %  platform  category 
A
The AutoLISP functions (write-line) and (write-char) automatically add the full CR/LF sequence (carriage return, line feed) when trying to output just the LF (line-feed, chr 10).

There is a trick of forcing AutoCAD to output really just the line-feed. Use the (write-char) function and add 256 to the character code. So instead of (write-char 10 f), use (write-char 266 f). An example:


(setq f (open "C:/TEMP/TESTFILE.TXT" "w"))
(write-char 266 f)
(close f)
writes a file testfile.txt containing just the LF character.
ACAD2011
100% *CAD
23.2.2011    18438×  
applies to: AutoCAD 2011 ·

See also:
Tip 14618:Easy copying of DWG entities with rotation.
Tip 14604:QRcode - dynamically generated QR codes in AutoCAD.
Tip 14414:Link geo-tagged photos from your mobile phone to AutoCAD DWG maps.
Tip 14361:Extended ATTOUT/ATTIN for block attribute management in Excel (also for LT).
Tip 14285:How to identify duplicate blocks in AutoCAD DWG drawings? SelDupBlk.


Back    All CAD Tips



Have we helped you? If you want to support the CAD Forum web service, consider buying one of our CAD applications, or our custom software development offerings, or donating via PayPal (see above). You may also add a link to your web - like this "fan" link: CAD Forum - tips, utilities, blocks for Autodesk products
CAD: 
OS: 
Categ: 
Text:
 FAQ
  



Featuring:
Increase your productivity with our set of BIM add-on functions for Autodesk Revit
Be.Smart T4R More info


Please use these tips at your own risk.
ARKANCE is not responsible for possible problems that may occur as a result of using any of these tips.
TOPlist