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
hwplib를 통해서 각 paragraph에 대한 text를 추출해보면, hwp파일의 각 문단에 대한 텍스트가 추출되는데, 문단 중간에 있는 개행문자(shift + enter)를 무시하고 문단의 모든 텍스트가 나오고 있어서, 문단 텍스트 내용을 나눌 수가 없습니다.
The text was updated successfully, but these errors were encountered:
안녕하세요
아래 코드와 같이 TextExtractOption 객체에 withControlChar() 속성을 true로 넣어주면 탭, 개행 등의 제어문자가 표현됩니다.
TextExtractOption option = new TextExtractOption(TextExtractMethod.OnlyText, false); option.setWithControlChar(true); String text = TextExtractor.extract(hwpFile, option);
Sorry, something went wrong.
No branches or pull requests
hwplib를 통해서 각 paragraph에 대한 text를 추출해보면,
hwp파일의 각 문단에 대한 텍스트가 추출되는데,
문단 중간에 있는 개행문자(shift + enter)를 무시하고 문단의 모든 텍스트가 나오고 있어서, 문단 텍스트 내용을 나눌 수가 없습니다.
The text was updated successfully, but these errors were encountered: