Issue
Function to return part of a string
Solution
This code will return the first 4 characters that are entered into a control
[Control Name].substr(0,4);
This code will return the last 4 characters that are entered into a control
[Control Name].substr([Control Name].length - 4, [Control Name].length);
Article ID: 109, Created: January 5, 2007 at 4:09 PM, Modified: August 18, 2016 at 11:29 AM