OutSystems Forge 日本語データベース

String

※Forge全件データの日本語検索サービスをご利用になりたい場合は、こちらまでお問合せください。

Forge英文サイト

2017-12-27 1.1.0 Rui Lopes All .NET Developer Tools
文字列を操作するための拡張機能 - Tclプログラミング言語で利用可能な 'string'コマンドに適合。 使用可能なアクションを確認するには、「詳細」タブを参照してください。
エクステンション内のアクションと入出力パラメータは文書化されているため、一度Publishすると詳細な説明を読むことができます。利用可能なアクションとその機能に関するヒントを以下に示します。 Compare:2つの文字列の辞書による比較 Equal:2文字列のChar-by-char比較 First:別の文字列の中に文字列が最初に現れる場所を探します。 Last:別の文字列の中に文字列が最後に出現する箇所を見つける Map:<key value>構造体と文字列のリストを与え、すべての 'key'部分文字列を 'value'部分文字列にマップする IsClass:文字列が特定のクラス(alpha、alpha-num、hex、boolean、whitespace、doubleなど)に属するかどうかをチェックします。 Join:指定された区切り文字列を持つリスト内のすべての文字列を結合します。 Range:2つのインデックス間の部分文字列を取得する Remove:2つのインデックス間の部分文字列を削除します(オプションで別の文字列に置き換えることもできます) Repeat:繰り返しで新しい文字列を作成する Reverse:文字列を逆順にする Split:文字列をリストに分割するために区切り記号のリストを使用します。 ToTitle:文字列をタイトルケースにマップする TrimBoth:両端で文字列をトリムする TrimLeft:文字列を最初からトリムする TrimRight:文字列をその尾でトリムする 私は各アクションで単体テストを実行しましたが、何らかのエラーが見つかった場合は(サポートタブで)お知らせして修正することができます。

[Overview]
Extension for manipulating strings - adapted from the 'string' command available in the Tcl programming language. See the Details tab to check on the available actions.
[Detail]
The actions and input/output parameters in the extension are documented so you can read their detailed descriptions once published. Below you can find the available actions and a hint on their functionality: Compare: Lexicographic comparison of 2 strings Equal: Char-by-char comparison of 2 strings First: Find first occurrence of a string inside another Last: Find last occurrence of a string inside another Map: Given a list of <key value> structures and a string, map all 'key' substrings into 'value' substrings IsClass: Check if a string belongs to a certain class (alpha, alpha-num, hex, boolean, whitespace, double, etc) Join: Joins all strings in a list with a specified separator string Range: Retrieve the substring between 2 indexes Remove: Remove the substring between 2 indexes (optionally, replace it with another string) Repeat: Create a new string by repetition Reverse: Reverse a string Split: Uses a list of separators to split a string into a list ToTitle: Maps a string into title-case TrimBoth: Trim a string at both ends TrimLeft: Trim a string at its beginning TrimRight: Trim a string at its tail I have performed unit tests on each action but, if you find any errors, please let me know (in the Support tab) so I can correct them.
戻る