blob: 7d367a536c7625d0fe05518343aedc2b66f3f9de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
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;
}
}
}
|