mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-08 07:56:06 +02:00
Many improvements and bug fixes
This commit is contained in:
@@ -13,12 +13,16 @@ public static class StringExtentions
|
||||
{
|
||||
_ = output.Append($"\v{c}\v");
|
||||
}
|
||||
return output.ToString();
|
||||
return output
|
||||
.ToString()
|
||||
.Replace(' ', '~');
|
||||
}
|
||||
|
||||
public static string FromSafeString(this string input)
|
||||
{
|
||||
return input.Replace("\v", "");
|
||||
return input
|
||||
.Replace("\v", "")
|
||||
.Replace('~', ' ');
|
||||
}
|
||||
|
||||
public static bool ToStandardizedNumber(this string input, out double result)
|
||||
|
||||
Reference in New Issue
Block a user