2014-03-24
1.0.2
LxIS - Lisbon Information Systems
7.0+
All
.NET
[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
...