由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - regular expression replace
相关主题
请问大牛们关于Regular expression matchingleetcode regular expression match的问题
现在申H1b premium 大概要多少天?问下leetcode上的Regular Expression Matching
regular expression (转载)what is regular expression's meaning?
regular expressionregular expression递归的复杂度多少?
Google onsiteLeetcode-010: Regular Expression Match (DP Solution)
implement a simple regular expression match? (转载)请推荐个regular expression的学习资料 面试用
leetcode 上面的Regular Expression MatchingWildcard Matching 和 Regular Expression Matching 区别是什么
有人了解 google 的 regular expression search 是怎么实现的吗Regular Expression Matching 问题请教。。
相关话题的讨论汇总
话题: replace话题: expression话题: regular话题: dev话题: txt
进入JobHunting版参与讨论
1 (共1页)
o******L
发帖数: 15
1
面试题问如何替换dev/system/*.txt为test/system/*.txt, 其中*不能为core,使用
regular expression。 求解!
l******b
发帖数: 39
2
简单一点, 不用perl, 就linux行吗
sed -n '/dev\/system\/.*\.txt/p' input_file | grep -v core | sed -n 's/dev/
test/gp'
用perl
dev\/system\/(\b(?!core\b)\w+)\.txt 后面自己替换一下
o******L
发帖数: 15
3
谢谢回复, 如果是用sql, REGEXP_REPLACE呢?
l******b
发帖数: 39
4

你试试, 这样行否?
select regexp_replace(regexp_substr(column_name, 'dev/system/(\b(?!core\b)\w
+)\.txt'), 'dev','test') from table_name;

【在 o******L 的大作中提到】
: 谢谢回复, 如果是用sql, REGEXP_REPLACE呢?
1 (共1页)
进入JobHunting版参与讨论
相关主题
Regular Expression Matching 问题请教。。Google onsite
如果面试遇到 regular expression match 或者 wildcard matching之类的implement a simple regular expression match? (转载)
问个regular expression的问题leetcode 上面的Regular Expression Matching
Regular expression的Levenstein DIstance有人了解 google 的 regular expression search 是怎么实现的吗
请问大牛们关于Regular expression matchingleetcode regular expression match的问题
现在申H1b premium 大概要多少天?问下leetcode上的Regular Expression Matching
regular expression (转载)what is regular expression's meaning?
regular expressionregular expression递归的复杂度多少?
相关话题的讨论汇总
话题: replace话题: expression话题: regular话题: dev话题: txt