forked from microsoft/TemplateStudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStringExtensions.cs
54 lines (46 loc) · 1.95 KB
/
StringExtensions.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Globalization;
using System.Text;
namespace Microsoft.Templates.Fakes
{
public static class StringExtensions
{
// This is the same substitution as VS makes with new projects
public static string MakeSafeProjectName(this string projectName)
{
if (projectName == null)
{
return null;
}
var stringBuilder = new StringBuilder(projectName);
for (var i = 0; i < stringBuilder.Length; i++)
{
var unicodeCategory = char.GetUnicodeCategory(stringBuilder[i]);
var flag = unicodeCategory == UnicodeCategory.UppercaseLetter ||
unicodeCategory == UnicodeCategory.LowercaseLetter ||
unicodeCategory == UnicodeCategory.TitlecaseLetter ||
unicodeCategory == UnicodeCategory.OtherLetter ||
unicodeCategory == UnicodeCategory.LetterNumber ||
stringBuilder[i] == '\u005F';
var flag1 = unicodeCategory == UnicodeCategory.NonSpacingMark ||
unicodeCategory == UnicodeCategory.SpacingCombiningMark ||
unicodeCategory == UnicodeCategory.ModifierLetter ||
unicodeCategory == UnicodeCategory.DecimalDigitNumber;
if (i == 0)
{
if (!flag)
{
stringBuilder[i] = '\u005F';
}
}
else if (!flag & !flag1)
{
stringBuilder[i] = '\u005F';
}
}
return stringBuilder.ToString();
}
}
}