• Intro Headers Instructions Macros Commands
  • Fork me on GitHub
    • Introduction
    • How to install bnd
    • Guided Tour
    • Guided Tour Workspace & Projects
    • Concepts
    • Best practices
    • Build
    • Project Setup
    • Generating JARs
    • Versioning
    • Baselining
    • Service Components
    • Metatype
    • Contracts
    • Bundle Annotations
    • Accessor Properties
    • SPI Annotations
    • Resolving Dependencies
    • Launching
    • Startlevels
    • Testing
    • Testing with Launchpad
    • Packaging Applications
    • JPMS Libraries
    • Wrapping Libraries to OSGi Bundles
    • Generating Documentation
    • Commands
    • For Developers
    • Tips for Windows users
    • Tools bound to bnd
    • Headers
    • Instruction Reference
    • Instruction Index
    • Macro Reference
    • Macro Index
    • Plugins
    • External Plugins
    • Settings
    • Errors
    • Warnings
    • Frequently Asked Questions
  • unescape ( ';' STRING )*

    public String _unescape(String args[]) {
    	StringBuilder sb = new StringBuilder();
    	for (int i = 1; i < args.length; i++) {
    		sb.append(args[i]);
    	}
    
    	for (int j = 0; j < sb.length() - 1; j++) {
    		if (sb.charAt(j) == '\\') {
    			switch (sb.charAt(j + 1)) {
    
    				case 'n' :
    					sb.replace(j, j + 2, "\n");
    					break;
    
    				case 'r' :
    					sb.replace(j, j + 2, "\r");
    					break;
    
    				case 'b' :
    					sb.replace(j, j + 2, "\b");
    					break;
    
    				case 'f' :
    					sb.replace(j, j + 2, "\f");
    					break;
    
    				case 't' :
    					sb.replace(j, j + 2, "\t");
    					break;
    
    				default :
    					break;
    			}
    		}
    	}
    	return sb.toString();
    }
    
    • GitHub