Return-Path: Delivered-To: apmail-jakarta-taglibs-user-archive@jakarta.apache.org Received: (qmail 3673 invoked by uid 500); 21 Mar 2001 19:51:39 -0000 Mailing-List: contact taglibs-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk Reply-To: taglibs-user@jakarta.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list taglibs-user@jakarta.apache.org Delivered-To: moderator for taglibs-user@jakarta.apache.org Received: (qmail 52252 invoked from network); 21 Mar 2001 17:41:28 -0000 Message-ID: From: "Renick, Garrel" To: "'taglibs-user@jakarta.apache.org'" Subject: RE: regexp taglib; am i smoking? Date: Wed, 21 Mar 2001 11:41:29 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain; charset="iso-8859-1" X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Hello Torgeir. Are you trying to replace "test1" with "mi", or are you trying to match "test1"? To replace "test1" with "mi" with no optons, the regexp should look like this: s/test1/mi/ To match test1 and treat the match as case-insensitive and multi-line, use this expression: m/test1/mi