[TIL] 2023-05-23

Melon Coder·2023년 5월 23일
0

TIL

목록 보기
39/50
post-thumbnail

Today I Learned


[Solidity]

오늘은 문자열 사이를 연결(concatenation)하는 방법과 다른 파일로부터 임포트하는 방법과 깃허브에서 임포트하는 방법을 알아보고 새로운 퀴즈도 풀었다. 오늘은 좀 어려웠다ㅜㅜ 그래서 다시 풀어봐야 할 것 같다.


concat

    function concat1(string memory _a, string memory _b) public pure returns(string memory) {
        return string.concat(_a, _b);
    }

    function concat2(string memory _a, string memory _b) public pure returns(string memory) {
        return string(abi.encodePacked(_a,_b));
    }

    function concat3(string memory _a, string memory _b) public pure returns(string memory) {
        return string.concat(_a, ":", _b);
    }

다음과 같이 string.concat(a, b)로 연결하거나 string(abi(encodePacked(a, b)))로 문자열 사이를 연결해 줄 수 있다.

0개의 댓글