Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
MLKitEntityExtraction フレームワーク リファレンス
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
MoneyEntity
class MoneyEntity : NSObject
テキストから抽出された金銭のエンティティ。
-
検出されたアノテーションの通貨部分。書式設定は適用されないため、
最初の文字列のサブセットが作成されます。
宣言
Swift
var unnormalizedCurrency: String { get }
-
検出されたアノテーションの整数部分。これは、変数の左側に書き込まれる
使用します。
宣言
Swift
var integerPart: Int { get }
-
検出されたアノテーションの小数部分。これは、変数の右端に書き込まれる
使用します。
宣言
Swift
var fractionalPart: Int { get }
-
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-25 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-07-25 UTC。"],[],["The `MoneyEntity` class extracts money information from text. Key properties include `unnormalizedCurrency`, which represents the raw currency string found. `integerPart` and `fractionalPart` provide the numerical components, to the left and right of the decimal separator, respectively. The class properties are read-only and no instantiation is possible, since `init` is unavailable.\n"]]