Search:

Type: Posts; User: jps

Search: Search took 0.09 seconds.

  1. Replies
    9
    Views
    2,409

    [SOLVED] Re: tokenizing a string with escape sequence

    Because I don't intend to spoonfeed answers, but give something to think about.
  2. Replies
    9
    Views
    2,409

    [SOLVED] Re: tokenizing a string with escape sequence

    Why not?
    String filePathModified = myFilePathEditingMethod(filePathOriginal);

    private String myFilePathEditingMethod(String filePathToBeDoubleSlashed){
    //look for\
    //if \ found, add extra \...
  3. Replies
    9
    Views
    2,409

    [SOLVED] Re: tokenizing a string with escape sequence

    That is because \D and \i are not valid escape sequences.
    The valid ones are:

    \b
    \f
    \n
    \r
    \t
    \"
    \'
Results 1 to 3 of 3