当前位置:网站首页>Remove HTML tags from Oracle
Remove HTML tags from Oracle
2022-06-29 00:10:00 【hay_ lee】
grammar
Oracle In the database REGEXP_REPLACE The syntax of the function is :
REGEXP_REPLACE(source_char, pattern [, replace_string [, position [, occurrence [, match_parameter ]
-- to update oralce Remove the label from the historical data of the database and store it in the unlabeled field
update IAM_WORK_ITEM_CONTENT t set t.item_content_nolabel = regexp_replace(t.ITEM_CONTENT,'\s*|\t|\r|\n','') ;
update IAM_WORK_ITEM_CONTENT t set t.item_content_nolabel = regexp_replace(t.item_content_nolabel,'<style[^>]*?>.*</style>','') ;
update IAM_WORK_ITEM_CONTENT t set t.item_content_nolabel = regexp_replace(t.item_content_nolabel,'</?[^>]*>|nbsp;|&','') ;




边栏推荐
- 每日一题:移除元素
- Typescript-- section 4: Functions
- Stm32f407 ------- GPIO input experiment
- scp拷贝文件夹
- PHP function file_ get_ Contents and memory mapping of operating system
- Is it safe and reliable to open a securities account in Yixue school?
- 随笔记:重新认识 else if
- Typescript -- Section 5: classes
- 10. Yolo series
- [C Primer Plus Chapter II after class programming questions]
猜你喜欢

Stm32f407 ------- IO pin multiplexing mapping
![[buuctf.reverse] 131-135](/img/c2/b8b06c8191af2c75bf4ad5c82feaea.png)
[buuctf.reverse] 131-135

矩 阵 压 缩

TypeScript--第五节:类

Have you ever met a fake interview in a job interview? How to avoid?

Haskell 配置 VS code 开发环境 (2022年6月)

stm32F407-------IO引脚复用映射

Stm32f407 ------ running lamp and buzzer

Stm32f407 ------ serial (serial port) communication

小白创业做电商,选对商城系统很重要!
随机推荐
ES6 module
Online yaml to JSON tool
Chrome浏览器的基本使用
Is it safe and reliable to open a securities account in Yixue school?
var、let、const 三者的区别
ES6:let、const、箭头函数
How to solve the database type error in the operation of the servert project?
TypeScript -- 第六节 泛型
Notes: three ways to define setters and Getters
How many locks are added to an update statement? Take you to understand the underlying principles
Phoenix安装教程
Yyds dry goods count 【 vs code work record III 】 set vs code format
Test experience: how testers evolve from 0 to 1
随笔记:插入排序 --from wcc
Matrix compression
Basic operation of MySQL database: import hellodb SQL and query as required; Create account and authorize
LeetCode每日一题:实现strStr()
Install MySQL on Windows platform (with Navicat premium 12 "using" tutorial)
【C Primer Plus第二章課後編程題】
力扣(LeetCode)178. 分数排名(2022.06.27)