...
- DateTime Converter - converts a string to the native date-time value;
- Double Converter - converts a string to a numeric value;
- SAP Date Converter - converts SAP date string YYYYMMDD to the native date value;
- SAP Time Converter - converts SAP time string to the native time value.
If sepcified, the Regex Pattern and Regex Replacement Value are applied to the result of the binding expression to achieve further Use Regular Expression to fulfil advanced formatting requirement. More about regular expression can be found at: https://docs.microsoft.com/en-us/dotnet/standard/base-types/regular-expressions
Requirement | Regex Setting | Example |
---|---|---|
Remove leading zero. | Pattern: (^|\s)0+ |
|
Format a number that has only zeros | Pattern: (^|\D)0+(\D|$) Replacement: 0, |
|