Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #4862
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail |
|---|---|
| From | Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> |
| Newsgroups | comp.lang.java.programmer |
| Subject | Re: Confusion about String.matches method |
| Date | Wed, 01 Jun 2011 18:59:23 +0200 |
| Organization | A noiseless patient Spider |
| Lines | 17 |
| Message-ID | <is5r5a$ao1$1@dont-email.me> (permalink) |
| References | <baaf3c9c-b3be-4d14-a5de-2149617640b2@k17g2000vbn.googlegroups.com> <slrniua9ad.phi.avl@gamma.logic.tuwien.ac.at> <50016a00-9422-46d4-8278-619fedafff55@c41g2000yqm.googlegroups.com> <nqrau6pa3u55q5ilki6h2dqk3qprd3er9d@4ax.com> <2fd869d6-c2f6-4360-85b4-6df2b6e68fb0@p13g2000yqh.googlegroups.com> <is5l6r$vk0$1@dont-email.me> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=ISO-8859-1; format=flowed |
| Content-Transfer-Encoding | 7bit |
| Injection-Date | Wed, 1 Jun 2011 16:59:22 +0000 (UTC) |
| Injection-Info | mx04.eternal-september.org; posting-host="F519hiVipveSa9xSGS6oxw"; logging-data="11009"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19krDzv0i6Y8nMzVszMyTVM" |
| User-Agent | Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.17) Gecko/20110414 Thunderbird/3.1.10 |
| In-Reply-To | <is5l6r$vk0$1@dont-email.me> |
| Cancel-Lock | sha1:AtvNMsJUbPPwctUH6AMvuqHAt5Q= |
| Xref | x330-a1.tempe.blueboxinc.net comp.lang.java.programmer:4862 |
Show key headers only | View raw
On 01/06/2011 17:17, Joshua Cranmer allegedly wrote:
> On 06/01/2011 10:10 AM, laredotornado wrote:
>> which returns false. If I remove the new line ("\n"), it matches, but
>> I can't guarantee my input won't contain new lines. How can I modify
>> my regular expression to match? Thanks, - Dave
>
> There is a flag that you can set to treat newlines as regular characters.
>
Pattern.DOTALL, to be precise. You can't use that in combination with
String#matches() however, as it is an argument to Pattern#compile. So
either go that way, or use the embedded flag, "(?s)" (put it at the
start of your regex).
--
DF.
Determinism trumps correctness.
Back to comp.lang.java.programmer | Previous | Next — Previous in thread | Next in thread | Find similar
Confusion about String.matches method laredotornado <laredotornado@zipmail.com> - 2011-05-31 10:24 -0700
Re: Confusion about String.matches method Andreas Leitgeb <avl@gamma.logic.tuwien.ac.at> - 2011-05-31 17:28 +0000
Re: Confusion about String.matches method laredotornado <laredotornado@zipmail.com> - 2011-05-31 13:15 -0700
Re: Confusion about String.matches method Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2011-05-31 23:10 +0200
Re: Confusion about String.matches method Andreas Leitgeb <avl@gamma.logic.tuwien.ac.at> - 2011-05-31 21:26 +0000
Re: Confusion about String.matches method Ian Shef <invalid@avoiding.spam> - 2011-05-31 22:20 +0000
Re: Confusion about String.matches method Roedy Green <see_website@mindprod.com.invalid> - 2011-05-31 15:53 -0700
Re: Confusion about String.matches method laredotornado <laredotornado@zipmail.com> - 2011-06-01 07:10 -0700
Re: Confusion about String.matches method Nigel Wade <nmw-news@ion.le.ac.uk> - 2011-06-01 16:02 +0100
Re: Confusion about String.matches method Roedy Green <see_website@mindprod.com.invalid> - 2011-06-06 00:50 -0700
Re: Confusion about String.matches method Esmond Pitt <esmond.pitt@bigpond.com> - 2011-06-06 20:18 +1000
Re: Confusion about String.matches method Roedy Green <see_website@mindprod.com.invalid> - 2011-06-07 21:15 -0700
Re: Confusion about String.matches method Michael Wojcik <mwojcik@newsguy.com> - 2011-06-08 11:13 -0400
Re: Confusion about String.matches method Esmond Pitt <esmond.pitt@bigpond.com> - 2011-06-09 19:19 +1000
Re: Confusion about String.matches method Roedy Green <see_website@mindprod.com.invalid> - 2011-06-07 21:18 -0700
Re: Confusion about String.matches method Gene Wirchenko <genew@ocis.net> - 2011-06-08 07:50 -0700
Re: Confusion about String.matches method Nigel Wade <nmw-news@ion.le.ac.uk> - 2011-06-06 12:15 +0100
Re: Confusion about String.matches method Joshua Cranmer <Pidgeot18@verizon.invalid> - 2011-06-01 11:17 -0400
Re: Confusion about String.matches method Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2011-06-01 18:59 +0200
Re: Confusion about String.matches method Ian Shef <invalid@avoiding.spam> - 2011-06-01 19:41 +0000
Re: Confusion about String.matches method Jim Janney <jjanney@shell.xmission.com> - 2011-06-01 08:41 -0600
csiph-web