Re: Fixing an apache2 perl module

2006-11-26 Thread Mumia W.
On 11/26/2006 11:19 AM, Grant wrote: I'm on the Interchange mailing list (icdevgroup.org) and we've found a problem with our Interchange::Link perl module for apache2. I don't know perl myself, and I was wondering if anyone here might be able to help fix it. The problem is that the Interchange

Fixing an apache2 perl module

2006-11-26 Thread Grant
I'm on the Interchange mailing list (icdevgroup.org) and we've found a problem with our Interchange::Link perl module for apache2. I don't know perl myself, and I was wondering if anyone here might be able to help fix it. The problem is that the Interchange tag: [bounce href="http://www.domain.

Re: matching sets and ids

2006-11-26 Thread Ueta Masayuki
Hi, How about this: use strict; use warnings; my $str = "9,(6,8)),((4,((3,2),1)),5)),(12,11)),(13,(7,10)))"; my @data = ("dumy", "A","B","C","D","E","F","G","H","I","J","K","L","M"); $str =~ s/(\d+)/$data[$1]/g; print $str; -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

Re: matching sets and ids

2006-11-26 Thread D. Bolliger
Himanshu Ardawatia am Sonntag, 26. November 2006 11:49: > Hi, Hi > I have two files : > File A contains the following : > 9,(6,8)),((4,((3,2),1)),5)),(12,11)),(13,(7,10))); > > File B contains the follwoing: > 1 A > 2 B > 3 C > 4 D > 5 E > 6 F > 7 G > 8 H > 9 I > 10 J > 11 K > 12 L > 13 M > >

matching sets and ids

2006-11-26 Thread Himanshu Ardawatia
Hi, I have two files : File A contains the following : 9,(6,8)),((4,((3,2),1)),5)),(12,11)),(13,(7,10))); File B contains the follwoing: 1 A 2 B 3 C 4 D 5 E 6 F 7 G 8 H 9 I 10 J 11 K 12 L 13 M Based on the file B, I want to modify the file A such that all numerics in file A get changed to t