반응형
RegExp 객체 사용
찾고자 하는 단어
var search = "Http";
var regex = new RegExp(search,'gi');
//문자열에서 문자 개수
var results = $('#textarea2').html().match(regex);
if(results == null)
{
alert(null);
}
else
{
alert(results.length);
}
text의 math에 생성한 regex를 인자로 넣음.
이때
단어가 하나도 속해있지 않다면 0이 아닌 null을 반환하므로 results에 대해 null Exception처리 해야됨.
null이 아니라면 length로 결과 반환 가능
반응형
'HTML & CSS & JS' 카테고리의 다른 글
textarea 개행 생략 해결 (0) | 2020.08.21 |
---|---|
span 영역 scroll 조정 (0) | 2020.08.20 |
Javascript 특정 단어 색 입히기 (0) | 2020.08.14 |
[Form tag] Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported] 에러 (0) | 2020.08.14 |
table에서 thymeleaf로 index 접근하기 (0) | 2020.08.13 |