推荐
专栏
教程
课程
飞鹅
本次共找到1697条
unicode字符列表
相关的信息
飞在秋天的蝴蝶
•
3年前
小白初学JavaScript,遇得到一个关于document.write输出的问题,求教
题目如下:统计在这些单词:“America”、“Greece”、“Britain”、“Canada”、“China”、“Egypt”中包含“a”或“A”的字符串的个数。下面是我写的代码:languageDocumentvarziMunewArray("America","Greece
Stella981
•
4年前
C#序列化反序列化对象为base64字符串
之所以序列化为base64字符串方便传输,可存储在本地也可以是服务器publicclassSerializer{privateSerializer(){}publicstaticstringSerialize<T(Tobj)
Stella981
•
4年前
Debezium 处理 mysql timestamp 的坑
使用Debezium订阅mysqlbinlog Debezium对于Timestamp的处理,会变成字符串,处理的核心代码是:ZonedDateTimeexpectedTimestampZonedDateTime.of(LocalDateTime.parse("20140908T17:51:04.780"),
Stella981
•
4年前
C#winform中数据库的连接
一、连接VS2013自带的本地数据库usingSystem.Data.SqlClient;首先定义一个连接字符串publicstaticstringConnectString"Server(localdb)\\Projects;InitialCatalogTest;IntegratedSecurity
Stella981
•
4年前
JSONBuilder的用法
一。JSONBuilder可以向文件中写入写入json字符串。如下面的例子:1publicclassTest2{3publicstaticvoidmain(Stringargs)throwsIOException4{5Filefn
Stella981
•
4年前
Python format 用法详解
一、填充字符串1\.位置print("hello{0},thisis{1}.".format("world","python"))根据位置下标进行填充print("hello{},thisis{}.".format("world","python"))根据顺序自动填充
Stella981
•
4年前
Javascript、js 时间日期时间戳转换
1、当前系统区域设置格式(toLocaleDateString和toLocaleTimeString)例子:(newDate()).toLocaleDateString()""(newDate()).toLocaleTimeString()结果:2008年1月29日16:13:112.普通字符串(toDat
Stella981
•
4年前
SpringBoot之actuator
在springBoot中集成actuator可以很方便的管理和监控应用的状态。暴露的Restful接口有:HTTP方法路径描述鉴权GET/autoconfig查看自动配置的使用情况trueGET/configprops查看配置属性,包括默认配置trueGET/beans查看bean及其关系列表
Stella981
•
4年前
QString组合、拆分。
1、组合字符常用arg()函数QStringtestQString("_haha_%1_hehe%2").arg("ee").arg("aa"); //test"_haha_ee_heheaa"eg:arg(constQString&a,intfieldWidth0,QCharfillCh
京东云开发者
•
3年前
京东云开发者| Redis数据结构(二)-List、Hash、Set及Sorted Set的结构实现
1引言之前介绍了Redis的数据存储及String类型的实现,接下来再来看下List、Hash、Set及SortedSet的数据结构的实现。2ListList类型通常被用作异步消息队列、文章列表查询等;存储有序可重复数
1
•••
83
84
85
•••
170