-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainPage.xaml.cs
89 lines (80 loc) · 2.48 KB
/
MainPage.xaml.cs
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.ApplicationModel.DataTransfer;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
namespace MemoryVerseShortener
{
public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();
}
public void Button_Click(object sender, RoutedEventArgs e)
{
string inputText = input.Text;
string transformedText = TransformString(inputText);
output.Text = transformedText;
DataPackage package = new DataPackage
{
RequestedOperation = DataPackageOperation.Copy,
};
package.SetText(transformedText);
Clipboard.SetContent(package);
}
private string TransformString(string input)
{
string[] splitInput = input.Split(' ', '\n', '\r').Where(s => s.Length > 0).ToArray();
Queue<string> outputList = new Queue<string>();
// Add a number for verse 1 if no number is present
if (!char.IsDigit(splitInput[0][0]))
{
outputList.Enqueue("1 ");
}
foreach (string s in splitInput)
{
//if (s.Length > 0)
//{
if (char.IsDigit(s[0]))
{
outputList.Enqueue($"\n{s} ");
}
else
{
outputList.Enqueue(s.Substring(0, 1).ToUpper());
}
if (IsPunct(s, s.Length - 1))
{
outputList.Enqueue($"{s[s.Length - 1]} ");
}
//}
}
StringBuilder outputString = new StringBuilder();
while (outputList.Count > 0)
{
outputString.Append(outputList.Dequeue());
}
return outputString.ToString();
}
private bool IsPunct(string s, int index)
{
char c = s[index];
switch (c)
{
case '.':
case ',':
case ':':
case ';':
case '-':
case '!':
case '?':
return true;
default:
return false;
}
}
}
}