當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


erlang equal用法及代碼示例


Erlang equal函數/方法的用法及代碼示例。


該方法返回一個布爾值,以確定一個字符串是否等於另一個字符串。如果字符串相等,則將返回true值,否則將返回false值。

用法


equal(str1,str2)

參數

  • str1,str2-需要比較的2個字符串。

返回值

如果兩個字符串相等,則將返回true值,否則將返回false值。

例如


-module(helloworld). 
-import(string,[equal/2]). 
-export([start/0]). 

start() -> 
   Str1 = "This is a string1", 
   Str2 = "This is a string2", 
   Status = equal(Str1,Str2), 
   io:fwrite("~p~n",[Status]).

輸出

當我們運行上麵的程序時,我們將得到以下結果。


false

相關用法


注:本文由純淨天空篩選整理自 erlang equal。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。