Re: TID Find and replace
Re: TID Find and replace
- Subject: Re: TID Find and replace
- From: has <email@hidden>
- Date: Tue, 7 May 2002 22:16:11 +0100
Eric Phillips wrote:
>
What is happening is the search finds ', 1' which is part of ', 123, and
>
it returns 'TAB23' I need 'TAB123'.
Here's your problem:
>
set theText to textReplace(theText, (", "& aString), tab)
Should read:
set theText to textReplace(theText, (", " & aString), (tab & aString))
HTH
has
--
http://www.barple.connectfree.co.uk/ -- The Little Page of Beta AppleScripts
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.