mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 04:11:35 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			236 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			236 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example48;
 | |
| 
 | |
| { This program demonstrates the AdjustLineBreaks function }
 | |
| 
 | |
| Uses sysutils;
 | |
| 
 | |
| Const 
 | |
|   S = 'This is a string'#13'with embedded'#10'linefeed and'+
 | |
|        #13'CR characters';
 | |
| 
 | |
| Begin
 | |
|   Writeln (AdjustLineBreaks(S));
 | |
| End. | 
