summaryrefslogtreecommitdiff
path: root/dsa/DSALib/Auxiliary/Extensions.cs
blob: b4fde67db88c0e772895e9b7b71e478ad6b12321 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace DSALib.Auxiliary {
    public static class StringExtension {
        //This mehod extends string. It adds spaces until a fixed length is reached.
        //If the original string is already longer, it is returner unmodified.
        public static string AddSpaces(this string str, int length) {
            var temp = str;
            for (var i = str.Length; i < length; i++) temp += " ";
            return temp;
        }


        //This mehod extends string. 
        //It adds spaces at the HEAD of a string until a fixed length is reached.
        //If the original string is already longer, it is returner unmodified.
        public static string AddSpacesAtHead(this string str, int length) {
            var temp = "";
            for (var i = str.Length; i < length; i++) temp += " ";
            return temp + str;
        }
    }
}