示例#1
0
 ///<summary>Converts any string to an acceptable format for X12. Converts to all caps and strips off all invalid characters. Optionally shortens the string to the specified length and/or makes sure the string is long enough by padding with spaces.</summary>
 private static string Sout(string str, int maxL)
 {
     return(X12Generator.Sout(str, maxL, -1));
 }
示例#2
0
 ///<summary>Converts any string to an acceptable format for X12. Converts to all caps and strips off all invalid characters. Optionally shortens the string to the specified length and/or makes sure the string is long enough by padding with spaces.</summary>
 private static string Sout(string str)
 {
     return(X12Generator.Sout(str, -1, -1));
 }
示例#3
0
 ///<summary>Converts any string to an acceptable format for X12. Converts to all caps and strips off all invalid characters. Optionally shortens the string to the specified length and/or makes sure the string is long enough by padding with spaces.</summary>
 private static string Sout(string inputStr, int maxL, int minL)
 {
     return(X12Generator.Sout(inputStr, maxL, minL));
 }