Search:

Type: Posts; User: KevinWorkman

Search: Search took 0.10 seconds.

  1. Re: How split a text looking for values with regular expression

    I'm not totally sure what you're asking. Can you show us an MCVE showing the new data, as well as the new regular expression you're trying to use? What does it match? What doesn't it match?
  2. Re: How split a text looking for values with regular expression

    If I understand what you're asking, all you need to do is change the last bit of the regular expression from capturing digits (\\d) to capturing word characters (\\w).


    Pattern pattern =...
  3. Re: How split a text looking for values with regular expression

    For future reference, saying that something didn't work doesn't give us a lot to work from. Try telling us what your code did instead, or provide an MCVE so we can see it for ourselves.

    I'm not a...
  4. Re: How split a text looking for values with regular expression

    Are each of these lines really on a separate line, or do they come as one big String without line breaks?

    Do you not care about anything after the equals sign? Will the equals sign always be...
Results 1 to 4 of 4