# endswith

10개의 포스트

문자열 메서드

✍️ 필자가 꺼내보기 용으로 정리한 것이다. 필요한 이들에게도 같이 도움이 되었으면 한다.

2023년 1월 8일
·
0개의 댓글
·

[python] 문자열 다루기

지정한 문자열로 시작하면 True, 그렇지 않다면 False를 반환

2022년 8월 24일
·
0개의 댓글
·
post-thumbnail

[2255] Count Prefixes of a Given String | Biweekly Contest 77 Easy

You are given a string array words and a string s, where wordsi and s comprise only of lowercase English letters.Return the number of strings in words

2022년 5월 5일
·
0개의 댓글
·
post-thumbnail

[JavaScript #15] Basic of JavaScript - ES6 문법

ES6에 추가된 함수로 기존 function() 함수를 변형했다.중괄호와 return문이 생략될 경우, 화살표 오른쪽에는 리턴될 "값"만 쓰여야 한다. 특정 string을 찾기 위한 indexOf 메서드 외 기능startsWith endsWith includesrepe

2021년 9월 27일
·
0개의 댓글
·
post-thumbnail

ES6 & String,Array Method

ES6 기능 소개 / String 메서드 / includes() / repeat() /💡Array.from() / Array.of()

2021년 3월 26일
·
0개의 댓글
·
post-thumbnail

[leetcode] Short Encoding of Words

Time: O(N^2\*M), N is the length of the words, M is the length of wordsiSpace: O(1)

2021년 3월 6일
·
0개의 댓글
·
post-thumbnail

[ PROJECT ] 당근마켓 클론코딩 - #05 dJango에서 MySQL 'LIKE' 사용하기

특정 문자열, 단어, 숫자를 포함하는 데이터를 추출하고싶을 때 사용하는 쿼리, LIKE!

2021년 1월 3일
·
0개의 댓글
·
post-thumbnail

ECMAScript 6(ES2015) Features

ECMAScript 6의 새로운 기능 정리 Arrow Function(화살표 함수) 전통적인 함수작성 방법 대신 축약해서 표현할 수 있습니다. 콜백 함수로 활용합니다.. 화살표 함수에서의 this는 감싸고 있는 코드의 lexical this와 같습니다.

2019년 12월 24일
·
0개의 댓글
·