gpt4 book ai didi

Erlang:将 pid 转换为字符串

转载 作者:行者123 更新时间:2023-12-02 01:42:02 25 4
gpt4 key购买 nike

我想将 erlang <0.121.0> 中的 Pid 转换为字符串,我该怎么做?

有没有办法对 Pid 进行模式匹配?

{Node, Index, Number} = <0.121.0>.

最佳答案

pid_tokens(Pid) ->
PidStr = pid_to_list(Pid),
PidStr1 = lists:sublist(PidStr, 2, length(PidStr)-2),
[N, P1, P2] = [list_to_integer(T) || T <- string:tokens(PidStr1,[$.])],
{N, P1, P2}.

这样的东西可能对你有用。其中Pid是你要匹配的进程id

关于Erlang:将 pid 转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28024934/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com