formater.cs

来自「可以实现任意数据库之间的数据互导,可以实现任意数据库之间的数据互导」· CS 代码 · 共 27 行

CS
27
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace Formater
{
    public class Formater
    {
        public static string nullAction(string oldstr)
        {
            return oldstr;
        }
        public static string removeXin(string oldstr)
        {
            return oldstr.Replace("*", "");
        }
        public static string removesZero(string oldstr)
        {
            return oldstr.Replace("0", "");
        }
        public static string addZero(string oldstr)
        {
            return oldstr+"0";
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?