Procházet zdrojové kódy

部分代码整理

master
SisMaker před 4 roky
rodič
revize
3f5da446be
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      src/dataType/utString.erl

+ 2
- 2
src/dataType/utString.erl Zobrazit soubor

@ -13,7 +13,7 @@ toLowerStr(List) when is_list(List) ->
[begin
case C >= $A andalso C =< $Z of
true ->
C - $A + $a;
C + 32;
_ ->
C
end
@ -25,7 +25,7 @@ toUpperStr(List) when is_list(List) ->
[begin
case C >= $a andalso C =< $z of
true ->
C - $a + $A;
C - 32;
_ ->
C
end

Načítá se…
Zrušit
Uložit