由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - help on replacing text in a file (转载)
相关主题
help on sed专家们,find the longest common substring of two strings
Simple Question回馈本版,贴GOOGLE电话面经
[转载] perl字符串问题One Phone Interview Problem
Regular expression的问题关于anagram的老题?
Amazon一周多了。。。等的太不淡定了。。。 说两个面经吧
给一个大俗之一的面经吧。面试题目: 有2个字符串,消除第一个字符串中第二个字符串包含的所有字母。 例如: string1: helloworld string2: abcdef output: hlloworld 面
一个基本的string问题问到题
amazon 第一轮电话面试请教一道leetcode的题目
相关话题的讨论汇总
话题: replacing话题: text话题: mytempfile话题: outputfile话题: attfile
进入Unix版参与讨论
1 (共1页)
e****e
发帖数: 179
1
【 以下文字转载自 Linux 讨论区 】
发信人: engine (boxing cat), 信区: Linux
标 题: help on replacing text in a file
发信站: BBS 未名空间站 (Wed Oct 31 11:42:35 2007)
I would like to replace string 1 with string 2 in file3.dat, here is what I
did:
#!/usr/bin/perl
@inputfile= ("string1");
@outputfile=("string2");
@attfile=("file3.dat");
$mytempfile=$inputfile[0];
$youtempfile=$outputfile[0];
$hisfile=$attfile[0];
perl -pi -e 's/$mytempfile/$youtempfile/' $hisfile;
The program reports an error:
Scalar found where operator ex
1 (共1页)
进入Unix版参与讨论
相关主题
请教一道leetcode的题目Amazon
请问一个题目给一个大俗之一的面经吧。
一道string matching的题目一个基本的string问题
g电面amazon 第一轮电话面试
help on sed专家们,find the longest common substring of two strings
Simple Question回馈本版,贴GOOGLE电话面经
[转载] perl字符串问题One Phone Interview Problem
Regular expression的问题关于anagram的老题?
相关话题的讨论汇总
话题: replacing话题: text话题: mytempfile话题: outputfile话题: attfile