We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
배시에서는 정규식에 그리디 옵션이 없는 모양이다.
요청 결과에서 단어의 뜻은 <p class="ly_p">의미</p>와 같은 구조로 존재하는데, 그리디 옵션을 찾지 못해 단순히 아래와 같이 처리해뒀다.
<p class="ly_p">의미</p>
<p class="ly_p">([^<]+)</p>
헌데, 몇몇 단어의 의미에는 '<' 가 포함되어 있다. 예) able
'<'를 포함해 출력할 수 있도록 정규식 구문을 수정한다.
위 이슈는 ndic -d able 로 확인할 수 있다.
ndic -d able
The text was updated successfully, but these errors were encountered:
No branches or pull requests
배시에서는 정규식에 그리디 옵션이 없는 모양이다.
요청 결과에서 단어의 뜻은
<p class="ly_p">의미</p>
와 같은 구조로 존재하는데,그리디 옵션을 찾지 못해 단순히 아래와 같이 처리해뒀다.
<p class="ly_p">([^<]+)</p>
헌데, 몇몇 단어의 의미에는 '<' 가 포함되어 있다.
예) able
'<'를 포함해 출력할 수 있도록 정규식 구문을 수정한다.
위 이슈는
ndic -d able
로 확인할 수 있다.The text was updated successfully, but these errors were encountered: