I need to find special escape java chars (\n, \t, \b, etc.) in a grooup of strings and then print what strings contain which special chars. So, when printing I would like to change the char value itself by a string "\n" for '\n', "\t" for '\t' and so on. I did with a switch statement for all this type of characters. I wonder if there is a solution that doesn't involve checking for each one of the???
|
|
I didn't find a library for that, but on the other hand, my quick implementation doesn't look too terrible - I'd prefer this even over a RegExp ;)
According to my compiler, theses are all escape sequences that are allowed for Strings. |
|||||||||
|
|
Hmm, I don't think regular expressions will let you do this replacement in one line, even with back references. The problem is injecting the knowledge that the newline character maps to "\n" and so on for all special characters. You can of course do it with a series of replace() calls, one for each character, but you're trying to avoid that. You need the equivalent of the 'tr' command in Unix, and I'm sorry to say I don't know of such a method. |
|||
|
|
|
At the end of the day, no matter what method is used, something will need to look at every character in the string. You can either do explicitly in a loop, like you are now, or by chaining a set of replace() calls. But, while these might look shorter on paper, they are likely to take longer. To do this using
To do this in a loop, look at the answer from Andreas_D. Do note that the Edit: Initially I thought that you could probably do it with a magic regex, however you can't do conditional replacement in the regex, meaning that you could only do the equivalent of the replace calls shown above. Given that regexes will be slightly slower in this case, I don't think that this is a good solution. |
||||
|
|
|
A different approach using a map to decide replacement and StringBuilder.replace method to actually perform the replacement, it looks a bit more compact and I guess it is not far from the switch version in performance but certainly using a bit more of memory.
the output of the sample is hi\nthere\t\t\tHow are u? |
|||
|
|
You might use regular expressions: |
|||
|
|
|
If you’re looking for something a tad fancier, you might look at this answer. |
|||
|
|
|
org.apache.commons.lang.StringEscapeUtils.(un)EscapeJava methods are probaby what you want to do this both ways... Answer from brainzzy not mine : |
|||
|
|