programing

regex_substr 첫 번째 항목만 반환 MariaDB(Wordpress)

goodsources 2023. 8. 24. 21:59
반응형

regex_substr 첫 번째 항목만 반환 MariaDB(Wordpress)

주요 아이디어는 모든 게시물에서 모든 링크를 가져오는 것입니다.다음 명령을 사용하여 WP 다중 구성 요소 데이터베이스에서 데이터를 선택하려고 합니다.

"select regexp_substr(post_content, '(?<=href=[\'\"])([^\'\"]+)') as link_url from wp_${id}_posts where post_type = 'post' or post_type = 'page'"

그러나 regexp_substr은 첫 번째 항목만 반환합니다.저는 각 게시물, 테이블 post_content에서 첫 번째 항목만 반환합니다.잃어버린 것?감사해요.

언급URL : https://stackoverflow.com/questions/61466668/regex-substr-return-just-first-occurrence-mariadb-wordpress

반응형