Search:

Type: Posts; User: helloworld922

Search: Search took 0.12 seconds.

  1. Re: \d+ does not work with split giving same result as just \d

    Why \d+ doesn't work:

    You're using a look-ahead match, which implicitly means the actual match group is the "space" between characters, i.e. match.start() = match.end(). Since you're matching at...
  2. Re: \d+ does not work with split giving same result as just \d

    StackOverflow: How to split a string but also keep the delimiters

    The accepted answer may be what you're looking for, applied here you just use + instead of ; as the "delimiter".

    ...
Results 1 to 2 of 2