Previous Index Next

BridgePlus.framework, SMSForder Class Methods

Category

Substring range methods

Method

rangesOfParagraphsOfString:

Summary

Returns ranges of the paragraphs, excluding delimiters.

Signature

+ (NSArray *)rangesOfParagraphsOfString:(NSString *)aString

Parameters

aString = a string

Result

An array of range values

Availability

Version 1.2.0

Notes

 

Sample

use scripting additions

use framework "Foundation"

use script "BridgePlus"

load framework


set aString to "This is a string." & linefeed & "It has two paragraphs."

set theResult to current application's SMSForder's rangesOfParagraphsOfString:aString

ASify from theResult

--> {{location:0, length:17}, {location:18, length:22}}

theResult as list

--> {{location:0, length:17}, {location:18, length:22}}


Click here to open script in a script editor