erlang 技巧备忘

我的原文在:http://jiorry.iteye.com/blog/1202231

 

1. 左补齐 padding left

io:format("~4..Ts~n", ["a"]).  -> TTTa

io:format("~4..0B~n", [1]).  -> 0001

 

文档里介绍的具体语法:The general format of a control sequence is ~F.P.PadModC .

F:长度   

P:保留小数位数   

Pad:补齐的字符串 

Mod:模式,即,~s|~w|~B  

C:The character C determines the type of control sequence to be used. 还理解的不是很清楚

FP为任意数字

 

2. io:format | io_lib:format

io:format("~4..0B~n", [1])        -> 0001   默认直接写入当前的输出流

io_lib:format("~4..0B~n", [1])  -> [["000", "a"], "\n"] 返回了一个字符串列表

 

3. {ok, Columns, _Rows=[R]} = db:find(Sql).

其中的_Rows 为占位变量,只是标识一下变量的意义。_Rows=[R] 标识和赋值一并完成。

 

4. 得到当前时间的字符串

{Year, Mon, Day} = date(),
 {Hour, Min, Sec} = time(),

io_lib:format("~B-~2..0B-~2..0B ~2..0B:~2..0B:~2..0B", [Year, Mon, Day, Hour, Min, Sec]).

 

5. 字符串转换成整数

string_to_int(Bin) when is_binary(Bin) ->
     string_to_int(binary_to_list(Bin));
string_to_int(Str) when is_list(Str) ->
     {I, []} = string:to_integer(Str),
     I.

 

6. aes 加密

crypto:aes_cfb_128_encrypt(Key, IVec , Text )

crypto:aes_cfb_128_decrypt(Key, IVec , Text )

 

文档:Text must be a multiple of 128 bits (16 bytes). Key is the AES key, and IVec is an arbitrary initializing vector. The lengths ofKey and IVec must be 128 bits (16 bytes).

Key,IVec必须为128bits, Text必须为128bit的倍数,不足的话补足。呵呵,不仔细看的话,会被折磨的。

  

边写erlang边更新,不写不更新...

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值