由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
_Xiyu版 - help with regular expression
相关主题
String during the tournament!!!请教在R里面如何拆character string.
shen问一道题(8)
Shen's Stringing price请议员催绿
灣區的社區學校 (community colleges in Bay area) (转载)JTextArea做console窗口的目前结果和问题
小孩画画的板C++ string to int Problem
regex 用DP做对不对啊?请教Regular Expression,
JAVA里什么METHOD是用来STRING PATTERN SEARCHpython 小问题
java 截取一部分stringvi 一问.
相关话题的讨论汇总
话题: expression话题: regular话题: string话题: file话题: strings
1 (共1页)
C****r
发帖数: 381
1
regular expression gurus,
How do I replace the first occurrence only of some strings in a file?
For example, if I have a file as follow,
........
..........
........
......
........
After replacement the file should look like this,
........
..........
........
......
........
The strings to be replaced are those enclosed in <>.
many thanks,
q*z
发帖数: 13362
2
regular expression 一次处理一行
没有state
所以我觉得只用 regular expression不可能
解决你的问题.

【在 C****r 的大作中提到】
: regular expression gurus,
: How do I replace the first occurrence only of some strings in a file?
: For example, if I have a file as follow,
: ........
: ..........
........
: ......
: ........
: After replacement the file should look like this,
: ........
: ..........
........

C****r
发帖数: 381
3
can u pipe line by line?

【在 q*z 的大作中提到】
: regular expression 一次处理一行
: 没有state
: 所以我觉得只用 regular expression不可能
: 解决你的问题.

i*****8
发帖数: 6735
4
你要不就写几行perl,里面设个flag。
或者run 这个:
perl -pi -w -e 's/$(\n)/ newline /g;' test.txt ; perl -pi -w -e 's///'
test.txt ; perl -pi -w -e 's/ newline /\n/g;' test.txt
这个会先把断行都换掉然后再换回来,肯定不是最优

【在 C****r 的大作中提到】

: regular expression gurus,
: How do I replace the first occurrence only of some strings in a file?
: For example, if I have a file as follow,
: ........
: ..........
........
: ......
: ........
: After replacement the file should look like this,
: ........
: ..........
........

g*****g
发帖数: 34805
5
of course regex can be on multiple line, and regex can have state.
otherwise, how does java have a function
public String replaceFirst(String regex,
String replacement)
in String class?

【在 q*z 的大作中提到】
: regular expression 一次处理一行
: 没有state
: 所以我觉得只用 regular expression不可能
: 解决你的问题.

d*****d
发帖数: 2449
6
你没有讲你要用什么语言/工具来解决这个问题?

【在 C****r 的大作中提到】
: regular expression gurus,
: How do I replace the first occurrence only of some strings in a file?
: For example, if I have a file as follow,
: ........
: ..........
........
: ......
: ........
: After replacement the file should look like this,
: ........
: ..........
........

P*x
发帖数: 1576
7
呵呵,看了回复,总结如下:
qaz:VP of Engineering型,我的结论就是最终的结论。
goodbug: Chief Archtect型,旁征博引,从大方向上指明可行性
v8:老黄牛engineer型,真正给出具体的解决方案的建议
dumbird: 老油条engineer型:拿到需求,先问问题,问题不被澄清先不忙着动手。
cabear: 绝望的engineer型:先表示一下同情先。
pix: 路过打酱油型。

【在 C****r 的大作中提到】
: regular expression gurus,
: How do I replace the first occurrence only of some strings in a file?
: For example, if I have a file as follow,
: ........
: ..........
........
: ......
: ........
: After replacement the file should look like this,
: ........
: ..........
........

m******s
发帖数: 8493
8
Pix:了解员工特长的经理型阿.

【在 P*x 的大作中提到】
: 呵呵,看了回复,总结如下:
: qaz:VP of Engineering型,我的结论就是最终的结论。
: goodbug: Chief Archtect型,旁征博引,从大方向上指明可行性
: v8:老黄牛engineer型,真正给出具体的解决方案的建议
: dumbird: 老油条engineer型:拿到需求,先问问题,问题不被澄清先不忙着动手。
: cabear: 绝望的engineer型:先表示一下同情先。
: pix: 路过打酱油型。

d*****d
发帖数: 2449
9
您老可真是一针见血呀!我倒不觉得自己是老油条,不过的确喜欢问清楚了再动手,省
得做无用功。

【在 P*x 的大作中提到】
: 呵呵,看了回复,总结如下:
: qaz:VP of Engineering型,我的结论就是最终的结论。
: goodbug: Chief Archtect型,旁征博引,从大方向上指明可行性
: v8:老黄牛engineer型,真正给出具体的解决方案的建议
: dumbird: 老油条engineer型:拿到需求,先问问题,问题不被澄清先不忙着动手。
: cabear: 绝望的engineer型:先表示一下同情先。
: pix: 路过打酱油型。

1 (共1页)
相关主题
vi 一问.小孩画画的板
大哥语法都是这么定义的regex 用DP做对不对啊?
facebook telephone interview from careercupJAVA里什么METHOD是用来STRING PATTERN SEARCH
一个string问题java 截取一部分string
String during the tournament!!!请教在R里面如何拆character string.
shen问一道题(8)
Shen's Stringing price请议员催绿
灣區的社區學校 (community colleges in Bay area) (转载)JTextArea做console窗口的目前结果和问题
相关话题的讨论汇总
话题: expression话题: regular话题: string话题: file话题: strings