Wish: Automatically strip out spaces in API key
Status: Accepted
Created by leiger 25 Jun 2011 05:12
**STE **
GoVegan |
25 Jun 2011 13:19. Edited 0 times. (Edit, Permalink) string.replace(/\s/,''); Included page "inc:signature" does not exist (create it now) |
leiger |
25 Jun 2011 17:01. Edited 1 times. (Edit, Permalink) String s = "a sd2fr2 24 g23 4g "; s.replaceAll(" ", ""); System.out.println(s); The result would be:
Included page "inc:signature" does not exist (create it now) |