OutSystems Forge 日本語データベース

String Manipulation On A Spring by LxIS

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

Forge英文サイト

2014-03-24 1.0.2 LxIS - Lisbon Information Systems 7.0+ All .NET
テキストを解析したり、任意の形式(csv、xml、json、カスタム形式など)のテキストにエクスポートする必要がある唯一の拡張機能です。
特徴 + StringFormat: 書式設定文字列と任意のレコードをパラメータとして受け取ります。 レコードのフィールドからは、.net文字列書式設定規則に従って書式設定された文字列が出力されます。http://msdn.microsoft.com/en-us/library/system.string.format(v=vs.110).aspx Example: Format Expression - "{LastUpdatedAt:dd,MMM,yy}" Record - Product (Name = "Ball", Description = "Playing Ball", LastUpdatedAt = #2014-04-01#) Result - "01, Apr, 14" + RegexParser Given a text and a regex expression this method returns the list of regex groups that match within that text. Example: Regex Expression - "(?<year>[0-9]{4})(?<month>[0-9]{2}) (?<day>[0-9]{2})" Text - "20120401" Returns Group year with one MatchValue 2012 Group month with one MatchValue 04 ...

[Overview]
The only extension you will ever need to parse text or export to text in any format (csv, xml, json, custom formats, etc)
[Detail]
Feature List + StringFormat: Receives as parameters a formatting string and any record. From the records's fields outputs a formatted string according to .net string formatting rules: http://msdn.microsoft.com/en-us/library/system.string.format(v=vs.110).aspx Example: Format Expression - "{LastUpdatedAt:dd,MMM,yy}" Record - Product (Name = "Ball", Description = "Playing Ball", LastUpdatedAt = #2014-04-01#) Result - "01, Apr, 14" + RegexParser Given a text and a regex expression this method returns the list of regex groups that match within that text. Example: Regex Expression - "(?<year>[0-9]{4})(?<month>[0-9]{2}) (?<day>[0-9]{2})" Text - "20120401" Returns Group year with one MatchValue 2012 Group month with one MatchValue 04 ...
戻る