Japanese
日本語の変換を扱うクラス
Static Method Summary
Static Public Methods | ||
public static |
cutTextForWidth(text: String, offset: Number, size: Number): String 指定したテキストの横幅を半角/全角で換算した場合の切り出し
|
|
public static |
指定したテキストの横幅を半角/全角でカウント
|
|
public static |
toFullWidth(text: String): String 全角に変換 |
|
public static |
toFullWidthAlphabet(text: String): String アルファベットを全角に変換 |
|
public static |
toFullWidthAsciiCode(text: String): String 英数記号を全角に変換 |
|
public static |
toFullWidthKana(text: String): String カタカナを全角に変換 |
|
public static |
toFullWidthNumber(text: String): String 数値を全角に変換 |
|
public static |
toFullWidthSpace(text: String): String スペースを全角に変換 |
|
public static |
toHalfWidth(text: String): String 半角に変換 |
|
public static |
toHalfWidthAlphabet(text: String): String アルファベットを半角に変換 |
|
public static |
toHalfWidthAsciiCode(text: String): String 英数記号を半角に変換 |
|
public static |
toHalfWidthKana(text: String): String カタカナを半角に変換 |
|
public static |
toHalfWidthNumber(text: String): String 数値を半角に変換 |
|
public static |
toHalfWidthSpace(text: String): String スペースを半角に変換 |
|
public static |
toHiragana(text: String): String カタカナをひらがなに変換 |
|
public static |
toKatakana(text: String): String ひらがなをカタカナに変換 |
Static Public Methods
public static cutTextForWidth(text: String, offset: Number, size: Number): String source
指定したテキストの横幅を半角/全角で換算した場合の切り出し
- 半角を1、全角を2としてカウント
- 半角は、ASCII文字、半角カタカナ。全角はそれ以外とします。
public static getWidth(text: String): Number source
指定したテキストの横幅を半角/全角でカウント
- 半角を1、全角を2としてカウント
- 半角は、ASCII文字、半角カタカナ。全角はそれ以外とします。
Params:
Name | Type | Attribute | Description |
text | String | カウントしたいテキスト |
public static toFullWidth(text: String): String source
全角に変換
Params:
Name | Type | Attribute | Description |
text | String | 変換したいテキスト |
public static toFullWidthAlphabet(text: String): String source
アルファベットを全角に変換
Params:
Name | Type | Attribute | Description |
text | String | 変換したいテキスト |
public static toFullWidthAsciiCode(text: String): String source
英数記号を全角に変換
Params:
Name | Type | Attribute | Description |
text | String | 変換したいテキスト |
public static toFullWidthKana(text: String): String source
カタカナを全角に変換
Params:
Name | Type | Attribute | Description |
text | String | 変換したいテキスト |
public static toFullWidthNumber(text: String): String source
数値を全角に変換
Params:
Name | Type | Attribute | Description |
text | String | 変換したいテキスト |
public static toFullWidthSpace(text: String): String source
スペースを全角に変換
Params:
Name | Type | Attribute | Description |
text | String | 変換したいテキスト |
public static toHalfWidth(text: String): String source
半角に変換
Params:
Name | Type | Attribute | Description |
text | String | 変換したいテキスト |
public static toHalfWidthAlphabet(text: String): String source
アルファベットを半角に変換
Params:
Name | Type | Attribute | Description |
text | String | 変換したいテキスト |
public static toHalfWidthAsciiCode(text: String): String source
英数記号を半角に変換
Params:
Name | Type | Attribute | Description |
text | String | 変換したいテキスト |
public static toHalfWidthKana(text: String): String source
カタカナを半角に変換
Params:
Name | Type | Attribute | Description |
text | String | 変換したいテキスト |
public static toHalfWidthNumber(text: String): String source
数値を半角に変換
Params:
Name | Type | Attribute | Description |
text | String | 変換したいテキスト |
public static toHalfWidthSpace(text: String): String source
スペースを半角に変換
Params:
Name | Type | Attribute | Description |
text | String | 変換したいテキスト |