MathGroup Archive 2006

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Manipulate list elements

  • To: mathgroup at smc.vnet.net
  • Subject: [mg67732] Re: Manipulate list elements
  • From: bghiggins at ucdavis.edu
  • Date: Thu, 6 Jul 2006 06:52:18 -0400 (EDT)
  • References: <e8ftmb$qch$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Try this,

list = {{ABILITY, CAPABILITY}, {PERSON, FLY}}
Partition[Map[ToExpression[ToLowerCase[ToString[#]]] &, Flatten[list]],
2]

{{ability, capability}, {person, fly}}


Cheers,

Brian


ute.paul at gmail.com wrote:
> I have a list of words. These words are written in capital letters. I
> need a list with these words in lower case letters. How can I
> manipulate the list elements that the capital letters become lower case
> letters?
> Example: list={{ABILITY, CAPABILITY},{PERSON, FLY}} =>list={{ability,
> capability},{person, fly}}


  • Prev by Date: RE:Simplest question: How to control some values in Input dialog box
  • Next by Date: Re: Manipulate list elements
  • Previous by thread: RE:Manipulate list elements
  • Next by thread: Re: Manipulate list elements