首页 > TAG信息列表 > toChar

#define 连接字符串

define连接字符串 define conn(x,y) x##y,连接x与y define toString(x) #x,将x变成字符串 #include <stdio.h> #define conn(x,y) x##y #define toChar(x) #x int main(void) { int a = conn(123,234); char* b = toChar(1); printf("%d", a

3.tochar

1)to_char(date, m) 将日期型数据转换成指定模式的字符型数据,可用于取单个年、月、日、时、分、秒​date: 日期函数,可以是 current_date, current_timestamp, localtimestamp, sysdate, systimestamp …​m: 指定要转换成的模式(将日期以该模式的形式返回 -- dual为Oracle提供的虚

Scala/Java正则匹配中去掉unicode的空格符

Scala正则匹配中去掉unicode的空格符 在Scala做数据清洗的时候,用str.replaceAll("\\s+","")的时候有些看不见的字符并不能够被清除掉,比如说 // scala代码: 160.toChar //普通的英文半角空格 12288.toChar //中文空格unicode 8194.toChar //半个中文宽度空格 8195.toChar