Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Suppose we want to keep the entire line of a string only if a particular word say e.g 'test' appears at starting of line.

If it appears anywhere then the entire line should be removed

e.g

if function_test()=5; //here this entire line should be removed

test sample =5; //here this entire should be there
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
281 views
Welcome To Ask or Share your Answers For Others

1 Answer

From Oracle 10g R2 on you should be able to use the anchor A to require the match at the beginning of the string (will only work for single-line strings thus).

http://www.regular-expressions.info/oracle.html


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...