Re: Trim space chars from start of line
Re: Trim space chars from start of line
- Subject: Re: Trim space chars from start of line
- From: Christopher Stone <email@hidden>
- Date: Mon, 25 Jul 2011 14:20:11 -0500
On Jul 25, 2011, at 13:10, Zavatone, Alex wrote: Hi. I've got a little not so elegant script to trim spaces from the beginning of a line. It handles if the whole line is full of spaces, but I was wondering if anyone out there has anything faster and is willing to share. ______________________________________________________________________
------------------------------------------------------------------------------------------------ on trimLeadingWhiteSpace(str) set cmd to "sed -nE 's/^[ ]*//p'<<<" & quoted form of str do shell script cmd return result end trimLeadingWhiteSpace ------------------------------------------------------------------------------------------------
set str to " Some Text 1 Some Text 2 Some Text 3 Some Text 4 Some Text 5 Some Text 6
Some Text 7 "
trimLeadingWhiteSpace(str)
------------------------------------------------------------------------------------------------
This is pretty fast.
Personally I'd use the Satimage.osax's regular expressions for speed and flexibility.
-- Best Regards, Chris
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden