'2021/08/18'에 해당되는 글 2건

  1. 2021.08.18 [DBMS] QueryPie
  2. 2021.08.18 [Java] html strip + multi whitespace strip

[DBMS] QueryPie

ITWeb/스크랩 2021. 8. 18. 13:27

https://www.querypie.com/ko

 

QueryPie | Centralized Data Access and Privacy Control across the Cloud

QueryPie improves data governance within your organization by centralizing data access policies.

www.querypie.com

 

:

[Java] html strip + multi whitespace strip

ITWeb/개발일반 2021. 8. 18. 11:30
content = content.replaceAll("<[^>]*>", "");  // html strip
content = content.replaceAll("( )+", " " );   // multi whitespace to single whitespace

사용할 일이 있는데 기억력이 떨어져서 기록 해 봅니다.

: