由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Linux版 - how to check space character in perl ?
相关主题
请问一个awk的问题sed简单问题
substring 的问题不打开文档而修改文档
vi tips for paper writersmac + iterm2 + bash; how to display the chinese characters?
改密码的问题问题:关于python和web
putty 中文字显示出问题啊perl能不能一次把一个str中的a替换成x,b替换成y?
another questionany bash command option similar as perl -c to check the syn
如何改变一个文件的UNIT?Parrot VM 跑 perl python PHP Ruby 啥意思?
sed: how to delete characters between pattern1 and pattern2 ?这个perl的简单小程序为什么不work?
相关话题的讨论汇总
话题: forthchar话题: tmpline话题: print话题: character话题: perl
进入Linux版参与讨论
1 (共1页)
s*****w
发帖数: 1527
1
i have the following code
$forthChar = substr($tmpLine, 3, 1);
print "--".$forthChar."--\n";
if ($forthChar == " ") {
} else {
print "not same\n";
}
this is what i get
p**i
发帖数: 688
2

$forthChar eq " " , == is for numeric equality

【在 s*****w 的大作中提到】
: i have the following code
: $forthChar = substr($tmpLine, 3, 1);
: print "--".$forthChar."--\n";
: if ($forthChar == " ") {
: } else {
: print "not same\n";
: }
: this is what i get

m*********g
发帖数: 273
3
right
use eq please

【在 p**i 的大作中提到】
:
: $forthChar eq " " , == is for numeric equality

t*****g
发帖数: 1275
4
use eq instead of == for string comparison.
Why don't you use regex
$tmpLine =~ /^.{3} /

【在 s*****w 的大作中提到】
: i have the following code
: $forthChar = substr($tmpLine, 3, 1);
: print "--".$forthChar."--\n";
: if ($forthChar == " ") {
: } else {
: print "not same\n";
: }
: this is what i get

L*1
发帖数: 11537
5
十多年前也犯过用“==”的错误,弄了一天才明白要用“eq”。

【在 s*****w 的大作中提到】
: i have the following code
: $forthChar = substr($tmpLine, 3, 1);
: print "--".$forthChar."--\n";
: if ($forthChar == " ") {
: } else {
: print "not same\n";
: }
: this is what i get

1 (共1页)
进入Linux版参与讨论
相关主题
这个perl的简单小程序为什么不work?putty 中文字显示出问题啊
网页如何马上更新呢another question
问问应该学用那个shell?如何改变一个文件的UNIT?
请教个perl/DBI/ssh tunnel的问题sed: how to delete characters between pattern1 and pattern2 ?
请问一个awk的问题sed简单问题
substring 的问题不打开文档而修改文档
vi tips for paper writersmac + iterm2 + bash; how to display the chinese characters?
改密码的问题问题:关于python和web
相关话题的讨论汇总
话题: forthchar话题: tmpline话题: print话题: character话题: perl