From mario.maio at libero.it Fri Jun 24 21:03:04 2011 From: mario.maio at libero.it (Mario Maio) Date: Fri, 24 Jun 2011 23:03:04 +0200 Subject: [cl-ppcre-devel] easy way to let regex-replace-all be case-unsensitive Message-ID: <4E04FB88.3070305@libero.it> Can I make regex-replace-all search being case insensitive ? Isn't there a direct option for that ? I've seen such an option in create-scanner , but I need nothing else than regex-replace-all, and I do not understand how to deal with create-scanner. Thanks Mario (clisp newbie) P.S. I'd like to give you my best compliments for your great job with ppcre, it's really fast and reliable, keep up the good work! From edi at weitz.de Fri Jun 24 23:10:17 2011 From: edi at weitz.de (Edi Weitz) Date: Sat, 25 Jun 2011 01:10:17 +0200 Subject: [cl-ppcre-devel] easy way to let regex-replace-all be case-unsensitive In-Reply-To: <4E04FB88.3070305@libero.it> References: <4E04FB88.3070305@libero.it> Message-ID: On Fri, Jun 24, 2011 at 11:03 PM, Mario Maio wrote: > Can I make regex-replace-all ?search being case insensitive ? Isn't there a > direct option for that ? How about "(?i)" at the beginning of the regex? > P.S. I'd like to give you my best compliments for your great job with ppcre, > it's really fast and reliable, keep up the good work! Thanks!