StringProgrammingGuide

Size: px
Start display at page:

Download "StringProgrammingGuide"

Transcription

1 Strings Programming Guide for Cocoa

2 lengh characteratindex:

3 mystring NSString *mystring text in an NSString..."; NSRange letterrange; letterrange = [mystring rangeofcharacterfromset:[nscharacterset uppercaselettercharacterset]]; letterrange.location mystringletterrange.location

4 scannerwithstring: localizedscannerwithstring: setscanlocation: setcharacterstobeskipped: scanstring:intostring setcasesensitive: setcharacterstobeskipped:

5 descriptionwithlocale: description stringwithformat: NSString *string1 = [NSString stringwithformat:@"a string: %@, a float: ]; // string1 is "A string: string, a float: " NSNumber *number = [NSNumber numberwithint:1234]; NSDictionary *dictionary = [NSDictionary dictionarywithobject:[nsdate date] forkey:@"date"]; NSString *basestring string."; NSString *string2 = [basestring A number: %@, a dictionary: %@", number, dictionary]; // string2 is "Base string. A number: 1234, a dictionary: {date = :02: ; }" stringwithformat: stringwithutf8string: NSString *s = [NSString stringwithformat:@"long %C dash", 0x2014]; NSString *s = [NSString stringwithutf8string:"long \xe2\x80\x94 dash"]; NSString *s = [NSString stringwithutf8string:"long dash"]; NSString *s dash"; // Not allowed

6 NSString *string contrived string %@"; NSLog(string); // The application will crash here due to signal 10 (SIGBUS) NSString *string contrived string %@"; NSLog(@"%@", string); // Output: A contrived string %@

7

8 availablestringencodings defaultcstringencoding stringwithcstring: initwithcstring: NSString *temp retainrelease UTF8String lossycstring cstring cstringlength getcstring getcstring:maxlength: getcstring:maxlength:range:remainingrange: stringwithcontentsoffile: writetofile:atomically: localizedstringwithformat: stringbyappendingstring: stringbyappendingformat:

9 stringwithcstring: stringwithutf8string: stringwithcharacters:length: getcharacters:length: initwithdata:encoding: detausingencoding: stringwithcontentsoffile: writetofile:atomically: localizedstringwithformat: initwithformat:locale: stringbyappendingstring: stringbyappendingformat:

10 rangeofcomposedcharactersequenceatindex:

11 rangeofstring: rangeofstring:options: rangeofstring:options:range: compare: compare:options: compare:options:range: rangeofcharacterfromset: rangeofcharacterfromset:options: rangeofcharacterfromset:options:range: rangeofstring: rangeofcharacterfromset: compare:

12 stringbyappendingstring: stringbyappendingformat:initwithformat: substringtoindex: substringfromindex: substringwithrange: componentsseparatedbystring:

13 drawatpoint:withattributes: drawinrect:withattributes: sizewithattributes: drawatpoint:withattributes: drawinrect:withattributes:

14

15 mutablecopy NSMutableCharacterSet *workingset; NSCharacterSet *finalcharset; workingset = [[NSCharacterSet alphanumericcharacterset] mutablecopy]; [workingset addcharactersinstring:@";:,."]; finalcharset = [workingset copy]; [workingset release]; UniChar chars[] = {0x000C, 0x2028}; NSString *string = [[NSString alloc] initwithcharacters:chars length:sizeof(chars) / sizeof(unichar)]; NSCharacterSet *chset = [NSCharacterSet charactersetwithcharactersinstring:string]; [string release]; NSString *filename; /* Assume this exists. */ NSString *absolutepath; NSData *charsetrep; BOOL result; absolutepath = [filename stringbystandardizingpath]; charsetrep = [finalcharset bitmaprepresentation]; result = [charsetrep writetofile:absolutepath atomically:yes]; charactersetwithcontentsoffile:

16 lettercharacterset lowercaselettercharacterset lettercharacterset

17

文字列操作プログラミングガイド (10000035i 0.0.0)

文字列操作プログラミングガイド (10000035i 0.0.0) 文 字 列 操 作 プログラミングガイド 目 次 文 字 列 操 作 プログラミングガイド(Cocoa):はじめに 5 対 象 読 者 5 この 書 類 の 構 成 5 関 連 項 目 6 文 字 列 7 文 字 列 オブジェクトの 生 成 と 変 換 8 文 字 列 を 生 成 する 8 C 文 字 列 やデータからNSStringを 生 成 する 8 文 字 列 の 整 形 10 ユーザ 向 けに

More information

1/5 ページ 日記検索ブログトップ記事一覧ログイン無料ブログ開設 fn7の日記 プロフィール 2010-02-03 Objective-C 最速基礎文法マスター Java 基礎文法最速マスター - 何かしらの言語による記述を解析する日記を参考に Objective-Cのものを書いてみた

More information

Microsoft Word - MDOnline 2001.

Microsoft Word - MDOnline 2001. - 1 - - 2 - #pragma mark LABELNAME mark #pragma mark SETTITLE - 3 - - 4 - - 5 - NSApplication requestuserattention : NSApplication : - (int) requestuserattention : (NSRequestUserAttentionType) reqtype

More information

JavaScriptCore

JavaScriptCore http://kishikawakatsumi.com Twitter @k_katsumi 24/7 twenty-four seven http://d.hatena.ne.jp/kishikawakatsumi/ JSContext *context = [[JSContext alloc] init]; JSValue *result = [context evaluatescript:@"2

More information

TextSystemOverview

TextSystemOverview テキストシステム アーキテクチャー ソフトウエア設計者にとって アプリケーションにおけるテキストの取り扱いという問題は 最も頭を悩ま せる要素です 最も 基本的な テキストシステムでも 入力 レイアウト 表示 編 集 コピー ペースト これらはサポートされていて当たり前です そのうえ最近は 単なるエ ディタ ワードプロセッサではなく でさえ複数のフォントやパラグラフ スタイル イメージの貼付に スペル

More information

Lecture 2 Slides (January 7, 2010)

Lecture 2 Slides (January 7, 2010) CS193P - Lecture 2 iphone Application Development Objective-C Foundation Framework 1 Announcements Enrollment process is almost done Shooting for end of day Friday Please drop the class in Axess if you

More information

NSDate NSCalendarDate NSObject NSDate NSCalendarDate NSDate NSCalendarDate NSDate NSCalendar NSDate date NSDate *d = [ NSDate date ]; // NSDate : + (i

NSDate NSCalendarDate NSObject NSDate NSCalendarDate NSDate NSCalendarDate NSDate NSCalendar NSDate date NSDate *d = [ NSDate date ]; // NSDate : + (i 2002.7.30 ( 1 st Edition ) - 1 - NSDate NSCalendarDate NSObject NSDate NSCalendarDate NSDate NSCalendarDate NSDate NSCalendar NSDate date NSDate *d = [ NSDate date ]; // NSDate : + (id) date : init date

More information

syspro-0405.ppt

syspro-0405.ppt 3 4, 5 1 UNIX csh 2.1 bash X Window 2 grep l POSIX * more POSIX 3 UNIX. 4 first.sh #!bin/sh #first.sh #This file looks through all the files in the current #directory for the string yamada, and then prints

More information

IT 2

IT 2 Knowledge-Works, Inc. Tokyo UML Caché IT 2 UML Caché Caché vocabulary UML Unified Modeling Language) UML UML / UML but UML UML UML DBMS / 2003 InternSystems DevCon Transformation Transformation on

More information

22.5.1

22.5.1 22.5.1 78 This is 10 10 21 H21H25H25 1 2 3 4 5 1 2 1 2 3 1 945 65 295 375 65 1,865 1,005 282 1 25 2 4 6 6 9 53 2 5,000 5,000 114 4/10 1/10 1/10 3,77082

More information

コリャ英和!一発翻訳 2014 for Mac ユーザーズガイド

コリャ英和!一発翻訳 2014 for Mac ユーザーズガイド Date: February 10, 2005 The revised building permit, including the changes we discussed yesterday, will be submitted today. This set also reflects an engineering change requested by David turner. the

More information

Lecture 3 Slides (January 12, 2010)

Lecture 3 Slides (January 12, 2010) CS193P - Lecture 3 iphone Application Development Custom Classes Object Lifecycle Autorelease Properties 1 Announcements Assignments 1A and 1B due Wednesday 1/13 at 11:59 PM Enrolled Stanford students

More information

文を綴る、文を作る

文を綴る、文を作る Nara Women's University Digital I Title 文 を 綴 る 文 を 作 る Author(s) 奥 村, 悦 三 Citation 叙 説, 第 29 号, pp.10-27 Issue Date 2001-12-01 Description URL http://hdl.handle.net/10935/1430 Textversionpublisher This

More information

表象される奈良: B面の「なら学」のために

表象される奈良: B面の「なら学」のために Nara Women's University Digital I Title 表 象 される 奈 良 : B 面 の なら 学 のために Author(s) 小 川, 伸 彦 Citation 小 川 伸 彦 : 奈 良 女 子 大 学 文 学 部 研 究 教 育 年 報, 第 3 号, pp. 27- Issue Date 2007-03-31 Description 奈 良 女 子 大 学 文

More information

「森は海の恋人」運動と地域社会

「森は海の恋人」運動と地域社会 Nara Women's University Digital I Title 森 は 海 の 恋 人 運 動 と 地 域 社 会 Author(s) Citation 帯 谷, 博 明 帯 谷 博 明 : 奈 良 女 子 大 学 地 理 学 地 域 環 境 学 研 究 報 告, 2010, 7 号 85-94 Issue Date 2010-03-30 Description URL http://hdl.handle.net/10935/2700

More information

ARC Automatic Reference Counting clang 新しいコンパイラ LLVMプロジェクト (http://llvm.org/) のコンパイラ C Objective-C C++ の効率的なコードを生成 オプションなどは gcc とほぼ共通 Apple社独自の拡張機能を実現 ARC ブロックオブジェクトなど ARCを利用するには clang が必須 コンパイルオプションに

More information

Microsoft Word - MDOnline 2001.

Microsoft Word - MDOnline 2001. NSToolbar NSToolbarItem - 1 - Font Style Font Size セパレータ Blue Text Print : 文字修飾 ( Plain Text Bold Italic ) をメニューから変更する : 文字サイズをステッパーで変更する : 区切りを表示する : 文字色を青と黒に交互に切替える : テキストビューを印刷する NSTextView blueletter.tif

More information

声のことば、文字のことば : 古事記と万葉集から、古代日本の口頭語を考える

声のことば、文字のことば : 古事記と万葉集から、古代日本の口頭語を考える Nara Women's University Digital I Title Author(s) Citation 声 のことば 文 字 のことば : 古 事 記 と 万 葉 集 から 古 代 日 本 の 口 頭 語 を 考 える 奥 村, 悦 三 奥 村 悦 三 : 古 代 学 ( 奈 良 女 子 大 学 古 代 学 学 術 研 究 センター), 第 4 号, pp.1-10 Issue Date

More information

『万葉集』に詠まれた古都

『万葉集』に詠まれた古都 Nara Women's University Digital I Title 万 葉 集 に 詠 まれた 古 都 Author(s) 奥 村, 和 美 Citation 奥 村 和 美 : 都 城 制 研 究 (6) 都 城 の 廃 絶 とその 後, p. 111-120 Issue Date 2012-03 Description URL http://hdl.handle.net/10935/3517

More information

「向こう見ずな凝視」とフェミニズム

「向こう見ずな凝視」とフェミニズム Nara Women's University Digital I Title 向こう見ずな凝視 とフェミニズム Author(s) 竹本, 憲昭 Citation 外国文学研究, 第 23 号, pp.29-45 Issue Date 2004-12-30 Description URL http://hdl.handle.net/10935/652 Textversionpublisher This

More information

〈論文〉興行データベースから「古典芸能」の定義を考える

〈論文〉興行データベースから「古典芸能」の定義を考える Abstract The long performance database of rakugo and kabuki was totaled, and it is found that few programs are repeated in both genres both have the frequency differential of performance. It is a question

More information

日中両言語における人称代名詞の対照研究

日中両言語における人称代名詞の対照研究 Nara Women's University Digital I Title 日中両言語における人称代名詞の対照研究 Author(s) 付, 敏 Citation 古代文化とその諸相, p.7, p121-136 Issue Date 2007-08-31 Description URL http://hdl.handle.net/10935/1432 Textversionpublisher

More information

Chapter 1 1-1 2

Chapter 1 1-1 2 Chapter 1 1-1 2 create table ( date, weather ); create table ( date, ); 1 weather, 2 weather, 3 weather, : : 31 weather -- 1 -- 2 -- 3 -- 31 create table ( date, ); weather[] -- 3 Chapter 1 weather[] create

More information

slide

slide // Filename: Example701.ino(AllTest.ino) // Author: Akinori TSuji #include "FastLED.h" #include "SparkFunBME280.h" #include "RTClib.h" #include "LiquidCrystal_I2C.h" #define LED_PIN 13 #define DATA_PIN

More information

8・9世紀の神社行政 : 官社制度と神階を中心として

8・9世紀の神社行政 : 官社制度と神階を中心として Nara Women's University Digital I Title 8 9 世 紀 の 神 社 行 政 : 官 社 制 度 と 神 階 を 中 心 として Author(s) 巳 波, 利 江 子 Citation 巳 波 利 江 子 : 寧 楽 史 苑, 1985, 第 30 号, pp.22-57 Issue Date 1985-02-15 Description URL http://hdl.handle.net/10935/2049

More information

Objective-C Objective-C C Toolbox API Cocoa Objective-C Java Carbon API C API Objective-C Java Pure Java Java AppleScript Java Objective-C Project Bui

Objective-C Objective-C C Toolbox API Cocoa Objective-C Java Carbon API C API Objective-C Java Pure Java Java AppleScript Java Objective-C Project Bui AppleScript Studio AppleScript AppleScript Stduio Objective-C Cocoa Cocoa Objective-C Java AppleScript AppleScript Studio Application Suite call method call method [of class ] [of object ] [with parameter

More information

清水新二教授 略歴

清水新二教授 略歴 Nara Women's University Digital I Title 清 水 新 二 教 授 略 歴 Author(s) Citation 奈 良 女 子 大 学 社 会 学 研 究 会 奈 良 女 子 大 学 社 会 学 論 集 ( 奈 良 女 子 大 学 社 会 学 研 究 会 ), 第 17 号, pp.5-23 Issue Date 2010-03-01 Description 清

More information

形容詞的過去分詞(Adjectival Past Participle)の選択束縛について

形容詞的過去分詞(Adjectival Past Participle)の選択束縛について Nara Women's University Digital I Title 形 容 詞 的 過 去 分 詞 (Adjectival Past Participle Author(s) 大 野, 京 子 Citation 英 語 学 英 米 文 学 論 集, Vol.33, pp.49-77 Issue Date 2007-03-20 Description URL http://hdl.handle.net/10935/988

More information

2 1,384,000 2,000,000 1,296,211 1,793,925 38,000 54,500 27,804 43,187 41,000 60,000 31,776 49,017 8,781 18,663 25,000 35,300 3 4 5 6 1,296,211 1,793,925 27,804 43,187 1,275,648 1,753,306 29,387 43,025

More information

張揚映画『スパイシー・ラブスープ』試論

張揚映画『スパイシー・ラブスープ』試論 Nara Women's University Digital I Title 張 揚 映 画 スパイシー ラブスープ 試 論 Author(s) 田 中, 弥 生 Citation 人 間 文 化 研 究 科 年 報, 第 25 号, pp.25-35 Issue Date 2010-03-31 Description URL http://hdl.handle.net/10935/1544 Textversionpublisher

More information

3年生における国語表現指導

3年生における国語表現指導 Nara Women's University Digital I Title 3 年 生 における 国 語 表 現 指 導 Author(s) Citation 金 沢, 節 子 金 沢 節 子 : 研 究 紀 要 ( 奈 良 女 子 大 学 文 学 部 附 属 中 等 教 育 学 校 ), 2001, Vol.42, No.2, pp. 213-232 Issue Date 2001-03-19

More information

節等位接続の全体像解明に向けて:統一的説明と二分的説明

節等位接続の全体像解明に向けて:統一的説明と二分的説明 Nara Women's University Digital I Title 節等位接続の全体像解明に向けて : 統一的説明と二分的説明 Author(s) 長辻, 幸 Citation 長辻幸 : 欧米言語文化研究, 第 2 号, pp.59-74 Issue Date 2014-12-30 Description URL http://hdl.handle.net/10935/3926 Textversionpublisher

More information

[19世紀フランス小説における女性とセクシュアリティと子供像 第1部 子供たちの肖像・母親たちの肖像]

[19世紀フランス小説における女性とセクシュアリティと子供像 第1部 子供たちの肖像・母親たちの肖像] Nara Women's University Digital I Title Author(s) Citation [19 世 紀 フランス 小 説 における 女 性 とセクシュアリティと 子 供 像 第 1 部 子 供 たちの 肖 像 母 親 たちの 肖 像 ] 高 岡, 尚 子 19 世 紀 フランス 小 説 における 女 性 とセクシュアリティと 子 供 像, pp.1-16 Issue Date

More information

表面左 [更新済み]

表面左 [更新済み] 2014 Bicycle Commuting Registration Application *Fill out the information in the thick-bordered box below using a ballpoint pen. Student ID App. date Year Month Day Affiliation Name Address Year

More information

中国における初現期の都市・都市形成の4段階

中国における初現期の都市・都市形成の4段階 Nara Women's University Digital I Title 中 国 における 初 現 期 の 都 市 都 市 形 成 の4 段 階 Author(s) Citation 岡 村, 秀 典 岡 村 秀 典 : 東 アジアにおける 都 市 の 成 立 ( 奈 良 女 子 大 学 21 世 紀 COEプログラム 報 告 集 Vol.22), pp.65-80 Issue Date 2008-11-30

More information

For_Beginners_CAPL.indd

For_Beginners_CAPL.indd CAPL Vector Japan Co., Ltd. 目次 1 CAPL 03 2 CAPL 03 3 CAPL 03 4 CAPL 04 4.1 CAPL 4.2 CAPL 4.3 07 5 CAPL 08 5.1 CANoe 5.2 CANalyzer 6 CAPL 10 7 CAPL 11 7.1 CAPL 7.2 CAPL 7.3 CAPL 7.4 CAPL 16 7.5 18 8 CAPL

More information

南都炎上とその再建をめぐって

南都炎上とその再建をめぐって Nara Women's University Digital I Title 南 都 炎 上 とその 再 建 をめぐって Author(s) 加 須 屋, 誠 ; 西 谷 地, 晴 美 ; 森, 由 紀 恵 Citation 南 都 炎 上 とその 再 建 をめぐって, pp.1-61 Issue Date 2005-11-30 Description URL http://hdl.handle.net/10935/229

More information

『草迷宮』の背後

『草迷宮』の背後 Nara Women's University Digital I Title 草 迷 宮 の 背 後 Author(s) Citation 須 田, 千 里 須 田 千 里 : 叙 説 ( 奈 良 女 子 大 学 國 語 國 文 学 研 究 室 ), 1993, 第 20 17 Issue Date 1993-12-01 Description URL http://hdl.handle.net/10935/2042

More information

第3報告 LD/ADHDが虐待に向かうとき

第3報告 LD/ADHDが虐待に向かうとき Nara Women's University Digital I Title 第 3 報 告 LD/ADHDが 虐 待 に 向 かうとき Author(s) 山 本, 智 子 Citation 奈 良 女 子 大 学 文 学 部 研 究 教 育 年 報, 第 1 号, pp.35-44 Issue Date 2005-03-31 Description 奈 良 女 子 大 学 文 学 部 研 究

More information

- 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 - - 14 - - 15 - - 16 - - 17 - - 18 - - 19 - - 20 - - 21 - - 22 - - 23 - - 24 - - 25 - - 26 - - 27 - - 28 - - 29 - - 30 -

More information

「奉教人の死」の詩的中心

「奉教人の死」の詩的中心 Nara Women's University Digital I Title 奉 教 人 の 死 の 詩 的 中 心 Author(s) Citation 須 田, 千 里 須 田 千 里 : 叙 説 ( 奈 良 女 子 大 学 國 語 國 文 学 研 究 室 ), 1997, 第 24 203-214 Issue Date 1997-03-31 Description URL http://hdl.handle.net/10935/2043

More information

ユーザーズマニュアル

ユーザーズマニュアル 1 2 3 4 This product (including software) is designed under Japanese domestic specifications and does not conform to overseas standards. NEC *1 will not be held responsible for any consequences resulting

More information

藤原京の条坊制‐その実像と意義‐

藤原京の条坊制‐その実像と意義‐ Nara Women's University Digital I Title 藤 原 京 の 条 坊 制 その 実 像 と 意 義 Author(s) Citation 林 部, 均 林 部 均 : 都 城 制 研 究 (1)( 奈 良 女 子 大 学 21 世 紀 COEプログラム 報 告 集 Vol. 16), pp.37-66 Issue Date 2007-11-30 Description

More information

平安期貴族層における服喪慣習の展開

平安期貴族層における服喪慣習の展開 Nara Women's University Digital I Title 平 安 期 貴 族 層 における 服 喪 慣 習 の 展 開 Author(s) 小 林, 理 恵 Citation 小 林 理 恵 : 寧 楽 史 苑, 第 59 号, pp. 65-80 Issue Date 2014-02-10 Description URL http://hdl.handle.net/10935/4055

More information

中国都城の立地環境:長安から洛陽へ

中国都城の立地環境:長安から洛陽へ Nara Women's University Digital I Title 中 国 都 城 の 立 地 環 境 : 長 安 から 洛 陽 へ Author(s) Citation 斉, 東 方 ; 村 元, 健 一 都 城 制 研 究 (9) 東 アジア 古 代 都 城 の 立 地 条 件 ( 奈 良 女 子 大 学 古 代 学 学 術 研 究 センター) pp.29-52 Issue Date

More information

05松山巌様.indd

05松山巌様.indd 2011 pp. 65 96 2002 2 2012 1 18 65 2011 1 5 1 2 3 4 5 2002 9 1 2 3 4 5 1 2 66 3 4 5 5 1 4 1 4 1 2 3 4 5 6 5 1 8 7 5 1 4 67 2011 21 4 3 1 7 1 1 1 1 2 2 3 3 4 2 2 / 3 68 1 1 1 2 2 2 32 3 3 4 4 2 /fa/ 2/f/

More information

# let rec sigma (f, n) = # if n = 0 then 0 else f n + sigma (f, n-1);; val sigma : (int -> int) * int -> int = <fun> sigma f n ( : * -> * ) sqsum cbsu

# let rec sigma (f, n) = # if n = 0 then 0 else f n + sigma (f, n-1);; val sigma : (int -> int) * int -> int = <fun> sigma f n ( : * -> * ) sqsum cbsu II 4 : 2001 11 7 keywords: 1 OCaml OCaml (first-class value) (higher-order function) 1.1 1 2 + 2 2 + + n 2 sqsum 1 3 + 2 3 + + n 3 cbsum # let rec sqsum n = # if n = 0 then 0 else n * n + sqsum (n - 1)

More information

3

3 2 3 CONTENTS... 2 Introduction JAPANESE... 6... 7... 8... 9 ENGLISH About Shadowing... 10 Organization of the book... 11 Features of the text... 12 To students using this book... 13 CHINESE... 14... 15...

More information

楽譜に描かれた中国人像:アメリカ大衆音楽と中国イメージ

楽譜に描かれた中国人像:アメリカ大衆音楽と中国イメージ Nara Women's University Digital I Title 楽 譜 に 描 かれた 中 国 人 像 :アメリカ 大 衆 音 楽 と 中 国 イメージ Author(s) 久 本, 明 日 香 Citation 久 本 明 日 香 : 寧 楽 史 苑 ( 奈 良 女 子 大 学 史 学 会 ), 第 57 号, pp. 5 Issue Date 2012-02-10 Description

More information

西蔵への旅、西蔵からの旅 : 久生十蘭論Ⅲ

西蔵への旅、西蔵からの旅 : 久生十蘭論Ⅲ Nara Women's University Digital I Title 西 蔵 への 旅 西 蔵 からの 旅 : 久 生 十 蘭 論 Ⅲ Author(s) Citation 須 田, 千 里 須 田 千 里 : 叙 説 ( 奈 良 女 子 大 学 國 語 國 文 学 研 究 室 ), 1996, 第 23 87-117 Issue Date 1996-12-01 Description URL

More information

Webster's New World Dictionary of the American Language, College Edition. N. Y. : The World Publishing Co., 1966. [WNWD) Webster 's Third New International Dictionary of the English Language-Unabridged.

More information

p _08森.qxd

p _08森.qxd Foster care is a system to provide a new home and family to an abused child or to a child with no parents. Most foster children are youngsters who could not deepen the sense of attachment and relationship

More information

Microsoft Word - PPH-JPO-OSIM-form.doc

Microsoft Word - PPH-JPO-OSIM-form.doc Example form of on-line procedures (Example of the request based on the claims indicated patentable/allowable in the written opinion of the report on the state of the art) 書 類 名 早 期 審 査 に 関 する 事 情 説 明

More information

AD / HD支援の現在と「臨床社会学」の可能性

AD / HD支援の現在と「臨床社会学」の可能性 Nara Women's University Digital I Title AD / HD 支 援 の 現 在 と 臨 床 社 会 学 の 可 能 性 Author(s) Citation 山 本, 智 子 山 本 智 子 : 奈 良 女 子 大 学 社 会 学 論 集 ( 奈 良 女 子 大 学 社 会 学 研 究 会 ), 第 17 号, pp. 97-114 Issue Date 2010-03-01

More information

橡

橡 Nara Women's University Digital I Title 法 隆 寺 五 重 塔 塔 本 塑 像 にみる 女 性 像 - 服 飾 からの 考 察 - Author(s) 馬 場, まみ Citation 古 代 文 化 とその 諸 相, pp.5, 61-70 Issue Date 2007-08-31 Description URL http://hdl.handle.net/10935/1421

More information

自然(動・植物)年間指導計画表

自然(動・植物)年間指導計画表 Nara Women's University Digital I Title 自 然 ( 動 植 物 ) 年 間 指 導 計 画 表 Author(s) Citation 奈 良 女 子 大 学 文 学 部 附 属 幼 稚 園 幼 年 教 育 委 員 会 研 究 紀 要 ( 奈 良 女 子 大 学 文 学 部 附 属 幼 稚 園 幼 年 教 育 研 究 会 ), 1969, Vol. 8, pp.

More information

正倉院文書に現れる「有限」と「在限」

正倉院文書に現れる「有限」と「在限」 Nara Women's University Digital I Title 正 倉 院 文 書 に 現 れる 有 限 と 在 限 Author(s) Citation 宮 川, 久 美 宮 川 久 美 : 古 代 文 化 とその 諸 相 ( 奈 良 女 子 大 学 21 世 紀 COEプログ ラム 報 告 集 vol.15), p.9, pp.200-185( 二 七 ~ 四 Issue Date

More information

長岡宮会昌門の楼閣遺構とその意義

長岡宮会昌門の楼閣遺構とその意義 Nara Women's University Digital I Title 長 岡 宮 会 昌 門 の 楼 閣 遺 構 とその 意 義 Author(s) Citation 金 子, 裕 之 金 子 裕 之 : 古 代 都 市 とその 形 制 ( 奈 良 女 子 大 学 21 世 紀 COEプログラム 集 Vol. 14), pp. 48-71, 138 Issue Date 2007-08-31

More information

橡

橡 Nara Women's University Digital I Title Author(s) 奈 良 朝 女 性 の 唐 風 と 西 域 風 の 服 装 について- 衣 服 構 成 や 着 装 の 視 点 か ら- 岩 崎, 雅 美 Citation 古 代 日 本 と 東 アジア 世 界, pp.55-70 Issue Date 2005-12-27 Description URL http://hdl.handle.net/10935/1386

More information

橡

橡 Nara Women's University Digital I Title 平 城 京 の 形 態 と 機 能 Author(s) 舘 野, 和 己 Citation 東 アジアにおける 古 代 都 市 と 宮 殿, pp.5-31 Issue Date 2005-12-27 Description 2005 年 3 月 19 日 に 奈 良 女 子 大 学 にて 開 催 された 国 際 講 演

More information

生活科学リテラシーの育成を目指した授業開発 食をとりまく環境を考える -飲み物つくりを通して-

生活科学リテラシーの育成を目指した授業開発 食をとりまく環境を考える -飲み物つくりを通して- Nara Women's University Digital I Title Author(s) Citation 生活科学リテラシーの育成を目指した授業開発食をとりまく環境を考える - 飲み物つくりを通して - 永曽, 義子 永曽義子 : 研究紀要 ( 奈良女子大学附属中等教育学校 ), 2010, 第 pp. 37-52 Issue Date 2011-03-31 Description URL

More information

高度なメモリ管理プログラミングガイド ( i 5.1)

高度なメモリ管理プログラミングガイド ( i 5.1) 高度なメモリ管理 プログラミングガイド 目次 メモリ管理について 4 初めに 4 正しい方針で開発すればメモリ関係の問題は生じにくい 5 分析ツールを使ってメモリ管理上の問題を解決する 6 メモリ管理の方針 7 基本的なメモリ管理方法 7 簡単な例 8 autorelease を使って release メッセージを 遅らせて 送信する 8 参照により返されたオブジェクトを所有しない 9 オブジェクトの所有権を放棄する

More information

古代東国と「譜第」意識

古代東国と「譜第」意識 Nara Women's University Digital I Title 古 代 東 国 と 譜 第 意 識 Author(s) Citation 仁 藤, 敦 史 仁 藤 敦 史 : 古 代 日 本 の 支 配 と 文 化 ( 奈 良 女 子 大 学 21 世 紀 COEプログ ラム 報 告 集 Vol. 18), pp. 46-77 Issue Date 2008-02-29 Description

More information

MC-440 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

More information

中国語、日本語の母語話者と非母語話者の会話における修復行為について

中国語、日本語の母語話者と非母語話者の会話における修復行為について Nara Women's University Digital I Title Author(s) Citation 中 国 語 日 本 語 の 母 語 話 者 と 非 母 語 話 者 の 会 話 における 修 復 行 為 に ついて 今 中, 麻 祐 子 今 中 麻 祐 子 : 英 語 学 英 米 文 学 論 集 ( 奈 良 女 子 大 学 英 語 英 米 文 学 会 ), 第 41 号, pp.

More information

刊行百周年を機に読み直す『赤毛のアン』

刊行百周年を機に読み直す『赤毛のアン』 Nara Women's University Digital I Title 刊 行 百 周 年 を 機 に 読 みなおす 赤 毛 のアン Author(s) 赤 松, 佳 子 Citation 赤 松 佳 子 : 奈 良 女 子 大 学 文 学 部 研 究 教 育 年 報, Vol.6 (2009) Issue Date 2009-12-31 Description 奈 良 女 子 大 学 文

More information

2 236

2 236 28 2004 pp. 235 245 1 Received November 5, 2004 In the eighth volume of Confessiones is a famous and critical passage in which Augustine describes the process leading to his conversion. It is a long and

More information

長崎通信 No.85

長崎通信 No.85 NAOSITE: Nagasaki University's Ac Title 長崎通信 No.85 Author(s) Citation 長崎通信 No.85; 1986 Issue Date 1986-11-13 URL http://hdl.handle.net/10069/36432 Right 長崎の証言の会 This document is downloaded http://naosite.lb.nagasaki-u.ac.jp

More information

2009年度 4年世界学の実践

2009年度 4年世界学の実践 Nara Women's University Digital I Title 2009 年 度 4 年 世 界 学 の 実 践 Author(s) Citation 北 尾, 悟 ; 吉 田, 隆 ; 長 谷, 圭 城 ; 古 川, 年 昭 北 尾 悟 ほか: 研 究 紀 要 ( 奈 良 女 子 大 学 附 属 中 等 教 育 学 校 ), 2010,, pp. 16-28 Issue Date

More information

Copyright c 2008 Zhenjiang Hu, All Right Reserved.

Copyright c 2008 Zhenjiang Hu, All Right Reserved. 2008 10 27 Copyright c 2008 Zhenjiang Hu, All Right Reserved. (Bool) True False data Bool = False True Remark: not :: Bool Bool not False = True not True = False (Pattern matching) (Rewriting rules) not

More information

日本古代の婚礼について:中国の「六礼」との比較

日本古代の婚礼について:中国の「六礼」との比較 Nara Women's University Digital I Title 日 本 古 代 の 婚 礼 について: 中 国 の 六 礼 との 比 較 Author(s) Citation 劉, 佩 宜 劉 佩 宜 : 古 代 日 本 と 東 アジア 世 界 ( 奈 良 女 子 大 学 21 世 紀 COEプロ グラム 報 告 集 Vol.6), pp. 156-168 Issue Date 2005/12/27

More information

19世紀フランス小説に見る母と息子たち : 「男らしさ」をめぐって

19世紀フランス小説に見る母と息子たち : 「男らしさ」をめぐって Nara Women's University Digital I Title 19 世紀フランス小説に見る母と息子たち : 男らしさ をめぐって Author(s) Citation 高岡, 尚子 高岡尚子 : 外国文学研究 ( 奈良女子大学文学部外国文学研究会 ), 第 30 号, pp.1-22 Issue Date 2011-12-30 Description URL http://hdl.handle.net/10935/2946

More information

Mike Lawson Basing class activities on various cross-cultural themes, the objective of this course is to improve students practical levels of reading and listening comprehension and their abilities to

More information

gallery A Izumi created offsprings of two exhibited artworks. gallery B Izumi asked the participating artists to create a failed artwork. gallery C Iz

gallery A Izumi created offsprings of two exhibited artworks. gallery B Izumi asked the participating artists to create a failed artwork. gallery C Iz Press Release 2012.2.18 TALION GALLERY 110-0001 3-23-9 Tel 03-5834-2785 Fax 03-5834-2786 info@taliongallery.comwww.taliongallery.com gallery A Izumi created offsprings of two exhibited artworks. gallery

More information

program.dvi

program.dvi 2001.06.19 1 programming semi ver.1.0 2001.06.19 1 GA SA 2 A 2.1 valuename = value value name = valuename # ; Fig. 1 #-----GA parameter popsize = 200 mutation rate = 0.01 crossover rate = 1.0 generation

More information

長崎の証言ニュース No.32

長崎の証言ニュース No.32 NAOSITE: Nagasaki University's Ac Title 長崎の証言ニュース No.32 Author(s) Citation 長崎の証言ニュース No.32; 1976 Issue Date 1976-01-16 URL http://hdl.handle.net/10069/36293 Right 長崎の証言の会 This document is downloaded http://naosite.lb.nagasaki-u.ac.jp

More information

錦鯉ナビ Vol.4

錦鯉ナビ Vol.4 5 3 14 Tomahawk of Kohaku 41cm 21 13 Kohaku 46cm Sakai Fish Farm 15 Kohaku 45cm of Symbol Star 18 Sister Symbol Kohaku 42cm of Legend of Love Garnet of Garnet Kohaku 44cm of 17 20 16 Kohaku 45cm Taisho

More information

2 $ 0.41 $ 0.06 $ 0.44 $ (0.05) -- (0.05) (0.32) (0.02)

2 $ 0.41 $ 0.06 $ 0.44 $ (0.05) -- (0.05) (0.32) (0.02) NEWS RELEASE $ 3,214 $ 3,222 - $ 12,037 $ 11,968 1% $ 521 $ 461 13% $ 1,956 $ 1,867 5% $ 3,735 $ 3,683 1% $ 13,993 $ 13,835 1% $ 3,735 $ 3,407 10% $ 13,993 $ 12,933 8% $ 554 $ 86 549% $ 597 $ 1,501 (60)%

More information

....-.....w.....I.v48.\1-4.eps

....-.....w.....I.v48.\1-4.eps Reconsideration of the Items of the Standards for Employing New University Graduates in Questionnaire Survey: Focusing on Screening Process for Recruiting Students in the Humanities, Social Sciences and

More information

gc_ indd

gc_ indd 288 BUYERS GUIDE 2014 288 BUYERS GUIDE 2014 BUYERS GUIDE 2014 287 286 BUYERS GUIDE 2014 BUYERS GUIDE 2014 285 284 BUYERS GUIDE 2014 BUYERS GUIDE 2014 283 282 BUYERS GUIDE 2014 BUYERS GUIDE 2014 281 280

More information

ストラドプロシージャの呼び出し方

ストラドプロシージャの呼び出し方 Release10.5 Oracle DataServer Informix MS SQL NXJ SQL JDBC Java JDBC NXJ : NXJ JDBC / NXJ EXEC SQL [USING CONNECTION ] CALL [.][.] ([])

More information

色素発光の酸素消光を利用する微小領域圧力センシング: 内容の要旨および審査の結果の要旨

色素発光の酸素消光を利用する微小領域圧力センシング: 内容の要旨および審査の結果の要旨 Nara Women's University Digital I Title 色 素 発 光 の 酸 素 消 光 を 利 用 する 微 小 領 域 圧 力 センシング: 内 容 の 要 旨 および 審 査 の 結 果 の 要 旨 Author(s) 新 木, 直 子 ; 矢 野, 重 信 ; 加 藤, 昌 子 ; 三 方, 祐 司 ; 天 尾, Citation 博 士 学 位 論 文 内 容 の

More information

高松塚古墳壁画発見報道の文化社会学的分析―新聞記事にみる価値とイメージの生成―

高松塚古墳壁画発見報道の文化社会学的分析―新聞記事にみる価値とイメージの生成― Nara Women's University Digital I Title Author(s) 高松塚古墳壁画発見報道の文化社会学的分析 新聞記事にみる価値とイメージの生成 小川, 伸彦 Citation 小川信彦 : 奈良女子大学研究教育年報, 第 10 号, pp.15-32 Issue Date 2013-12-31 Description URL http://hdl.handle.net/10935/3915

More information

05-01.知的文書処理技術.doc

05-01.知的文書処理技術.doc 31 5.1 5.1.1 FEP [76], [78], [88]-[92] [75] AI [76] [78], [92]. 5.1.2 5.1.2.1 JFK JFK grouping Table 5-1-1 Table 5-1-1Category of JFK Type Group G0 GJ GF GB JFK Type K J or JK F or FK JF or JFK parsing

More information

『歴代古墨簿』 :「古梅園造墨資料」翻訳と解題(1)

『歴代古墨簿』 :「古梅園造墨資料」翻訳と解題(1) Nara Women's University Digital I Title 歴 代 古 墨 簿 : 古 梅 園 造 墨 資 料 翻 訳 と 解 題 (1) Author(s) Citation 松 尾, 良 樹 ; 的 場, 美 帆 松 尾 良 樹 的 場 美 帆 : 古 代 学 ( 奈 良 女 子 大 学 古 代 学 学 術 研 究 センタ ー), 第 3 号, pp.63-88 Issue

More information