C# 基础 - string 和 Datetime
1. string
1. 格式化填充
string str = "this {0} a {1}";
Console.WriteLine(string.Format(str, "is", "boy")); // this is a boy
2. 将数据合并成字符串
string[] strArr = new string[3] { "1", "2", "3"};
List<string> strList = new List<string>() { "1", "2", "3" };
string str = string.Join("--", strArr); //"1--2--3"
string str = string.Join("--", strList); //"1--2--3"
3. 分割
分隔符可为 new char[]{'','',..} 或 new string[]{"", "", ..}
可设置最多分割成多少项、分割后是否自动过滤掉空值
string str = "1,2.3,,4";
string[] sp = str.Split(new char[]{',', '.'}); //{"1", "2", "3", "", "4"}
string[] sp = str.Split(new string[]{","}); //{"1","2.3","","4"}
string[] sp = str.Split(new string[]{","}, StringSplitOptions.RemoveEmptyEntries); //{"1","2.3","4"}
4. 检查是否包含
if (str.Contain(content))
5. 起始字符串
string str = "www.abcd.com";
str.StartWith("www"); //true
str.StartWith("abcd"); //false
str.StartWith("abcd", 4); //true
6. 空或只有空格
string.Empty 和 "" 都指向固定的静态只读内存区域
而 null 只在栈上分配了空间,堆上没有。
string.IsNullOrEmpty(str); // ""、string.Empty、null 为 true
string.IsNullOrWhiteSpace(str); //""、" "、string.Empty、null 为 true
7. 替换
str = str.Replace(oldSubString, newSubString);
8. 删除
str = str.Remove(beginIndex, length);
9. 截取
string sub = str.Substring(startIndex);
string sub = str.Substring(startIndex, length);
10. 返回匹配到的第一个索引
int i = str.IndexOf(charOrString);
int i = str.IndexOf(charOrString, startIndex);
int i = str.IndexOf(charOrString, startIndex, searchLength);
int i = str.LastIndexOf(charOrString);
int i = str.LastIndexOf(charOrString, startIndex);
int i = str.LastIndexOf(charOrString, startIndex, searchLength);
11. 装换数字
string s = "123";
int i = int.Parse(s); // string.IsNullOrWhiteSpace(s) 不能为空,或存在非数字的其他字符
12. 前端截取
CharacterEllipsis 在字符边界修整文本,用...代替
WordEllipsis 在单词边界修整文本,用...代替
<TextBlock TextTrimming="None/CharacterEllipsis/WordEllipsis" />
13. 字体
<Grid.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<!-- 引入字体 -->
<ResourceDictionary>
<FontFamily x:Key="Consolasss">/Presentation/Resources/font/#consolas</FontFamily>
</ResourceDictionary>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Grid.Resources>
C:\Windows\Font\xx.TTF
根目录下 /Presentation/Resources/font/xx.TTF,代码是写成 #xx
2. DateTime
DateTime d1 = DateTime.Now; //{2019/9/17 20:58:56}
DateTime d2 = DateTime.UtcNow; //{2019/9/17 12:58:56}
int d3 = DateTime.DaysInMonth(2000, 11); //30
TimeSpan d4 = DateTime.Now.TimeOfDay; //{20:58:56.6098659}
DateTime ds = DateTime.Now.AddYears(-3).AddMonths(3).AddDays(-1).AddHours(3).AddMinutes(5).AddSeconds(3).AddMilliseconds(10);
TimeSpan d5 = DateTime.Now - ds;//{1005.20:54:56.9900000}
= DateTime.Now.Subtract(ds);
1. DateTime to String
DateTime dt = DateTime.Now;
string str = dt.ToString("yyyy-MM-dd HH:mm:ss"); //2019-09-17 21:05:55
string str = dt.ToString(); //2019/9/17 21:05:55
string str = string.Format("{0:yyyy-MM-dd}", dt);//2019-09-17
string str = string.Format("{0:yyyy-MM-dd HH:mm:ss}", dt);//2019-09-17 21:05:55
string str = dt.ToShortDateString(); // 2019/09/17
string str = dt.ToShortTimeString(); // 21:07
string str = dt.ToLongDateString(); // 2019年9月17日
string str = dt.ToLongTimeString(); // 21:07:39
2. String to DateTime
string str = "2019-09-17";
string str = "2019-09-17 21:12:04";
string str = "2019/09/17 21:12:04";
DateTime dt = Convert.ToDateTime(str);
3. DateTime to 时间戳
TimeSpan ts = DateTime.Now - new DateTime(1970, 1, 1, 0, 0, 0, 0); //{18156.21:20:31}
var df = Convert.ToInt64(ts.TotalSeconds).ToString(); //"1568755231"
4. TimeSpan to DateTime
TimeSpan ts = DateTime.Now - new DateTime(1970, 1, 1, 0, 0, 0, 0); //{18156.21:20:31}
DateTime dt = new DateTime(1970, 1, 1, 0, 0, 0, 0) + ts; //{2019/9/17 21:20:31}
5. 时间戳 to DateTime
TimeSpan ts = DateTime.Now - new DateTime(1970, 1, 1, 0, 0, 0, 0);
double sec = Convert.ToDouble(ts.TotalSeconds); //1568755231
System.DateTime dateTime = new System.DateTime(1970, 1, 1, 0, 0, 0, 0); //{1970/1/1 0:00:00}
dateTime = dateTime.AddSeconds(sec); // {2019/9/17 21:20:31}
3. TimeSpan
public static TimeSpan FromDays(double value);
public static TimeSpan FromHours(double value);
public static TimeSpan FromMinutes(double value);
public static TimeSpan FromSeconds(double value);
public static TimeSpan FromMilliseconds(double value);
public static TimeSpan FromTicks(long value);
var aa = DateTime.Now.Ticks; //637359305824346507
var bb = TimeSpan.FromTicks(aa); //{737684.09:09:42.4346507}
4. enum
enum Day { a = 8, b = 6, c, e, f = 7, g };
int a = (int)Day.a; //8
int b = (int)Day.e; //8
int c = (int)Day.g; //8
int d = (int)Day.f; //7
如果自身没有被赋值,就从上一个有赋值的开始算起,第一个默认为 0。
5. XAML 综合使用
<TextBlock Text="{Binding Num, Source={x:Static local:Common.Obj}, StringFormat={}{0}辆}" />
<TextBlock Text="{Binding ToDate, Source={x:Static local:Common.Obj}, StringFormat={}{0:yyyy-MM-dd HH:mm:ss}}" />
<TextBlock Text="{Binding ToDate, Source={x:Static local:Common.Obj}, StringFormat=yyyy-MM-dd HH:mm:ss:fff}" />
public static class Common
{
public static Object Obj { get; set; }
}
public partial class Window2 : Window
{
public Window2()
{
Common.Obj = new { Num = 34 , ToDate = DateTime.Now};
InitializeComponent();
}
}
C# 基础 - string 和 Datetime的更多相关文章
- string转DateTime(时间格式转换)
1.不知道为什么时间在数据库用varchar(8)来保存,例如"19900505",但是这样的保存格式在处理时间的时候是非常不方便的. 但是转换不能用Convert.ToDateT ...
- Java基础String的方法
Java基础String的方法 字符串类型写法格式如下: 格式一: String 变量名称; 变量名称=赋值(自定义或传入的变量值); 格式二: String 变量名称=赋值(自定义或传入的变量值); ...
- Java基础 String 裸暴力算法- 五个小练习
之间的博客,承上启下: Java基础 String/StringBuff 常用操作方法复习/内存分析 Java数组直接选择排序.sort()排序 Java基础 String 算法 - 五个练 ...
- Java基础—String构造方法
Java基础--String构造方法 public String(): 创建一个空表字符串对象,不包含任何内容 public String(char[]chs): 根据字符数组的内容,来创建字符串对象 ...
- 【2-26】string/math/datetime类的定义及其应用
一string类 (1)字符串.Length Length作用于求字符串的长度,返回一个int值 (2)字符串.TrimStart(); TrimStart():可删除前空格,返回一个stri ...
- 十四、Java基础---------String、StringBuffer、StringBuilder基本应用
在前面的博客中曾提及Java的数据类型分为基本数据类型,和引用数据类型,而String便是最常见的应用数据类型,本文将着重介绍这一引用数据类型的用法. String 字符串 String类是对 ...
- Java基础-String、StringBuffer、StringBuilder
看下面这段代码: public class Main { public static void main(String[] args) { String string = ""; ...
- C# - string 转为 DateTime(自定义)
上代码: string dt = " 1 11 1961"; DateTime day; System.Globalization.DateTimeFormatInfo dtFor ...
- 再探Java基础——String.format(String format, Object… args)的使用
最近看到类似这样的一些代码:String.format("参数%s不能为空", "birthday"); 以前还没用过这功能不知咐意思,后研究了一下,详细讲解如 ...
随机推荐
- Zabbix 监控网站
官网教学步骤 配置 Web 监控 创建 Web 场景 配置 Web 场景 配置 Web 监控步骤 一共划分为 5 个步骤: 监测访问登录页面 模拟登录功能 # sid 变量的值 regex:name= ...
- windows7 更新失败,无法开机处理方法
记录一次今天同事笔记本无法开机的故障处理 windows7系统,安装更新失败,无法开机,卡在配置更新界面 处理方法,强制关机,开机按F8,进入安全模式,安全模式还会卡在配置更新界面,但是卡一会会进入系 ...
- 鸟哥的linux私房菜——第十章学习(BASH)
第十章 BASH 1.0).认识BASH 作用:通过" Shell "可以将我们输入的指令与 Kernel 沟通,好让Kernel 可以控制硬件来正确无误的工作! 应用程序其实是在 ...
- Leetcode(27)-移除元素
给定一个数组 nums 和一个值 val,你需要原地移除所有数值等于 val 的元素,返回移除后数组的新长度. 不要使用额外的数组空间,你必须在原地修改输入数组并在使用 O(1) 额外空间的条件下完成 ...
- 实现 MyBatis 流式查询的方法
基本概念流式查询指的是查询成功后不是返回一个集合而是返回一个迭代器,应用每次从迭代器取一条查询结果.流式查询的好处是能够降低内存使用.如果没有流式查询,我们想要从数据库取 1000 万条记录而又没有足 ...
- windows10 浏览器跑分对比!
2015-12-12 windows10 浏览器跑分对比! YOUR BROWSER SCORES! MaxScore=555http://html5test.com/i ...
- 微信分享 API
微信分享 API https://market.cmbchina.com/MPage/online/190416201200302/wechatShare.js /* * 注意: * 1. 所有的JS ...
- foreign language learning
foreign language learning free online learning websites 多邻国 https://www.duolingo.com 忆术家 https://www ...
- React & Calendar
React & Calendar 日历 https://github.com/YutHelloWorld/calendar/blob/master/src/Calendar.js // 国际化 ...
- SSO & Single Sign On
SSO & Single Sign On 单点登录 https://en.wikipedia.org/wiki/Single_sign-on https://cloud.google.com/ ...