• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
stripping an extra character from a text item
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

stripping an extra character from a text item


  • Subject: stripping an extra character from a text item
  • From: Robert Castles <email@hidden>
  • Date: Tue, 18 Dec 2001 13:41:14 -0600

I'm sure that this is something really stupid that I'm doing, but I'm
reading/sorting values from a tab-deliminated text file and I can't seem so
coerce the values into real or number elements. The script reads a series of
numbers into a list and when I go to use the numbers I can't coerce them. I
checked the values of the items and they're coming up with the number and
then an extra space on the end "87.54 ". I checked the text file and it
doesn't have any extra spaces or tabs in it. I've tried to delete the extra
character by doing the following:

delete last character of numberVariable

and/or

delete character 6 of numberVariable

both give me a "character 6 of....doesn't understand the delete command."

Here's the actual code that I'm using:

repeat with i from 1 to 20

--get the name of the selected record
set nameHolder to read x until tab
set nameList to nameList & nameHolder

--get the L value of the select record
set lHolder to (read x until tab)

--check to see if the value is the lMin or lMax
if lHolder > lMax then
set lMax to lHolder as number
set lMaxPos to i
end if
if lHolder < lMin then
set lMin to lHolder as real
set lMinPos to i
end if

--advance to the next record
read x until return
end repeat

The if statement is actually where I'm having the problem. Since I can't get
the value to be recognized as a number, it won't make the comparison.

Any ideas?

Thanks in advance,

-Bob


  • Prev by Date: Re: Closing subfolders in Finder window
  • Next by Date: Re: Tex-edit problem !
  • Previous by thread: Re: Looking for a possible AppleScript solution to check serial numbe rs...
  • Next by thread: Re: stripping an extra character from a text item
  • Index(es):
    • Date
    • Thread