Re: Editor

2002-07-31 Thread Kay Bieri
hardly ever tried another editor. Greetings Kay -------- Kay Bieri Sidlerstr. 5, 3012 Bern Switzerland email: [EMAIL PROTECTED] phone: +41 (031) 631 8682 -- To unsubscrib

Re: regex substituting math-functions

2002-07-29 Thread Kay Bieri
g and using /e as well before but I forgot to add the doublequotes around the [$1]. Kay Kay Bieri Sidlerstr. 5, 3012 Bern Switzerland email: [EMAIL PROTECTED] phone: +41 (031) 631 8682 ---

regex substituting math-functions

2002-07-28 Thread Kay Bieri
ne do it more easily with 'index' and alike? I'd be happy if somebody could give me some comment on this. I attached a sample maple input file on this email. I checked cpan for modules that convert maple input to mathematica output but didn't find anything. Best wishes Kay ---

Re: function for finding the index of an element in an array?

2002-07-25 Thread Kay Bieri
> Right! I have the same idea as you, and I have this : > > my @list = ('1234', '4567', '789A', 'BCDE', 'FGHI'); > my $GetLocation = 0; > my $value = 'BCDE'; > > for (my $atLoc = 0; $atLoc <= $#list and ! $GetLocation ; $atLoc++) > { $GetLocation = $atLoc if ($value eq $list[$atLoc]) } > > And