1. 字元 ascii 碼函式:ascii
語法: ascii(string str)
返回值: int
說明:返回字串 str 中第乙個字元的ascii 碼
舉例:hive> select ascii('ba') from test;
ok2. base64 字串
語法: base64(binary bin)
返回值: string
說明:返回二進位制 bin 的 base 編碼字串
舉例:hive> select base64(binary('test')) from test;
okbhh3mtizna==
3. 字串連線函式:concat
語法: concat(string a, string b...)
返回值: string
說明:返回輸入字串連線後的結果,支援任意個輸入字串
舉例:hive> select concat(『abc』,'def』,'gh』) from test;
abcdefgh
4. 帶分隔符字串連線函式:concat_ws
語法: concat_ws(string sep, string a, string b...)
返回值: string
說明:返回輸入字串連線後的結果,sep 表示各個字串間的分隔符
舉例:hive> select concat_ws(',','abc','def','gh') from test;
abc,def,gh
5. 陣列轉換成字串的函式: concat_ws
語法
iOS 如何將日期字串轉成NSDate
nsstring datestr wed may 2 22 27 08 0800 2012 nsdateformatter formater nsdateformatter alloc init formater setdateformat eee mmm d hh mm ss zzzz yyyy ...
如何將字串反轉
今天看看某某童鞋的部落格看到他寫的一題,如何將字串反轉,結果一看就感覺,既然客戶端可以完成,就用js。於是第一想法,將字串拆成陣列嘛,然後反轉,然後再join 組合嘛,這不就o了,於是立即下手 儘管還在複習可憐的固體物理,哎。var teststring document.getelementbyi...
如何將字串反轉?
1.stringbuilder的reverse 方法,最簡單 public static string reverse4 string s 2.使用字串陣列,實現從尾部開始逐個逆序放入字串 public static string reverse3 string s 3.使用string的chara...