digitalmars.D.learn - eating whitespace
- Peter Sommerfeld (4/4) Feb 09 2013 I wonder what the best, that means the fastest way is
- Andrej Mitrovic (2/6) Feb 09 2013 Try "f\too\t\n\rb\nar".removechars("\t\n\r")
- Peter Sommerfeld (4/5) Feb 09 2013 thanks, works...
I wonder what the best, that means the fastest way is to remove all whitespace " \t\n\r" from as string. Whitespace are distributed erratically within the string. Peter
Feb 09 2013
On 2/9/13, Peter Sommerfeld <noreply rubrica.at> wrote:I wonder what the best, that means the fastest way is to remove all whitespace " \t\n\r" from as string. Whitespace are distributed erratically within the string. PeterTry "f\too\t\n\rb\nar".removechars("\t\n\r")
Feb 09 2013
Am 09.02.2013, 22:30 Uhr, schrieb Andrej Mitrovic <andrej.mitrovich gmail.com>:"f\too\t\n\rb\nar".removechars("\t\n\r")thanks, works... Peter
Feb 09 2013