Re: String manipulation in Webcatalog
This WebDNA talk-list message is from 2001
It keeps the original formatting.
numero = 39070
interpreted = N
texte = Laeg Ent. wrote:> > [grep> search=0+([0-9]+)0+&replace=\1][likenumber][/grep]> > this just gets rid of the initial zeros......> > 0010200 results in 10200> Sorry, the ([0-9]+) is too greedy (snagging all trailing zeros). Ifyou were using Perl, you could use this instead: [grep search=0+([0-9]+?)0+&replace=\1][likenumber][/grep]which would be the nongreedy version of 1 or more. In this case, youwill have to pick off the initial zeros then strip the trailingzeros. Do this to strip the trailing zeros: [grep search=([1-9]+)0+$&replace=\1][likenumber][/grep]which is to say find any sequence numbers that do not include 0 andare followed to the end of line by only zeros and replace it by justthe number.John -- John PeacockDirector of Information Research and TechnologyRowman & Littlefield Publishing Group4720 Boston WayLanham, MD 20706301-459-3366 x.5010fax 301-429-5747-------------------------------------------------------------This message is sent to you because you are subscribed to the mailing list
.To unsubscribe, E-mail to: To switch to the DIGEST mode, E-mail to Web Archive of this list is at: http://search.smithmicro.com/
Associated Messages, from the most recent to the oldest:
Laeg Ent. wrote:> > [grep> search=0+([0-9]+)0+&replace=\1][likenumber][/grep]> > this just gets rid of the initial zeros......> > 0010200 results in 10200> Sorry, the ([0-9]+) is too greedy (snagging all trailing zeros). Ifyou were using Perl, you could use this instead: [grep search=0+([0-9]+?)0+&replace=\1][likenumber][/grep]which would be the nongreedy version of 1 or more. In this case, youwill have to pick off the initial zeros then strip the trailingzeros. Do this to strip the trailing zeros: [grep search=([1-9]+)0+$&replace=\1][likenumber][/grep]which is to say find any sequence numbers that do not include 0 andare followed to the end of line by only zeros and replace it by justthe number.John -- John PeacockDirector of Information Research and TechnologyRowman & Littlefield Publishing Group4720 Boston WayLanham, MD 20706301-459-3366 x.5010fax 301-429-5747-------------------------------------------------------------This message is sent to you because you are subscribed to the mailing list .To unsubscribe, E-mail to: To switch to the DIGEST mode, E-mail to Web Archive of this list is at: http://search.smithmicro.com/
John Peacock
DOWNLOAD WEBDNA NOW!
Top Articles:
Talk List
The WebDNA community talk-list is the best place to get some help: several hundred extremely proficient programmers with an excellent knowledge of WebDNA and an excellent spirit will deliver all the tips and tricks you can imagine...
Related Readings:
Mapping .tmpl extension on NT (1998)
[WebDNA] shopping sites and the "old commerce tags" (2012)
problem with applets embedded in tpl files (1997)
[WebDNA] paypal (2009)
Help!HELP!HELP! (1999)
Setting up shop (1997)
Hiding HTML and page breaks (1997)
Re:Can anyone help me with this shipping thing? (1998)
[WebDNA] linux linux linux (2009)
Sorting by date (1997)
shipcost (1997)
Start an application on NT? (1999)
A two part question (1999)
server not running. (2003)
WebCat2b13MacPlugIn - [include] doesn't allow creator (1997)
SKU lookup (1997)
mailto: tag (2001)
New WebCatalog Version !!! (1997)
PSC recommends what date format yr 2000??? (1997)
Template transformed itself into a database? (1998)