Delphi plugin for pasting text constants in source code?
        Posted  
        
            by 
                mjn
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by mjn
        
        
        
        Published on 2012-10-13T15:26:20Z
        Indexed on 
            2012/10/13
            15:37 UTC
        
        
        Read the original article
        Hit count: 254
        
Inserting (pasting from clipboard) of text constants in the Delphi code editor requires some manual "postprocessing" ...
- split up long text into multiple lines (and insert the string concatenation symbol)
- escape quotes (replace single quotes with double quotes)
- enclose the string with quotes
- keep original white space (leadinng blanks, line feeds)
Is there a IDE plugin available which helps to reduce these manual steps?
© Stack Overflow or respective owner