use AppleScript version "2.4" — Yosemite (10.10) or later use framework "Foundation" use scripting additions
decodeSelection() of me
–Numbersの選択範囲のデータを2D Listで返す on decodeSelection() tell application "Numbers" tell front document –現在表示中のシートを対象にする tell active sheet –Tableを特定する try set theTable to first table whose class of selection range is range on error display notification "Numbers: There is no selection" return {} end try
tell theTable –選択範囲のデータを1D Listで取得する set aRes to value of cells of selection range –選択範囲のセルのアドレスデータを1D Listで取得する set cellList to cell of selection range end tell
–Percent Decode set newList to {} repeat with i in aRes set j to contents of i set aRes to decodeCharacterReference(j as string) of me set the end of newList to aRes end repeat
–Write Back to Numbers repeat with i from 1 to (length of cellList) tell item i of cellList set value to item i of newList end tell end repeat
end tell end tell end tell end decodeSelection
on parseByDelim(aData, aDelim) set curDelim to AppleScript’s text item delimiters set AppleScript’s text item delimiters to aDelim set dList to text items of aData set AppleScript’s text item delimiters to curDelim return dList end parseByDelim
on decodeCharacterReference(aStr) set anNSString to current application’s NSString’s stringWithString:aStr set theData to anNSString’s dataUsingEncoding:(current application’s NSUTF16StringEncoding) set styledString to current application’s NSAttributedString’s alloc()’s initWithHTML:theData documentAttributes:(missing value) set plainText to (styledString’s |string|()) as string return plainText end decodeCharacterReference