免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1410 | 回复: 7
打印 上一主题 下一主题

请教为什么每段字符串打到第80个字符就有个空格产生? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-05-22 21:35 |只看该作者 |倒序浏览
过路大侠,
帮忙看下一个字符长度的问题:
如下为子程序最后打出来的结果,很奇怪的发现每段字符串到了第80个字符就有个空格产生(就是如下b和03之间空格)。
------------------------打出来的结果如下---------------------------
mm_fileline-Abel : oaf:20130518:/crcfmsnfs/deployment/wuhan/20130518/code/oaf/crc/oracle/apps/cux/b 03/ap/payrequest/webui/CuxApCheckAttUPPG.xml oaf:20130518:/crcfmsnfs/deployment/wuhan/20130518/code/oaf/crc/oracle/apps/cux/b 03/ap/payrequest/webui/CuxApPayRequestPG.xml
---------------------------------------------------------------------
问题1:为什么每段到第80个字符就有空格?这样我的路径就不对了;
问题2:如何解决这个问题?

-------------------------- 子程序如下-------------------------------
sub getFilesList
{
  my $fileline;
  my $sqlSpoolFile = getOSfilepath("$arg{currentdir}/files_spoolfile.txt");
  my $getFilesSql = getSqlScript("FILE_LIST", $sqlSpoolFile);
  my $runStatus = runSqlScript($getFilesSql,"apps",$arg{'appspwd'});
        if( $runStatus != 0 ){
                errorAndExit("ERROR at run sql: $@\n");
        }
       
  open (SPOOLFILE,"$sqlSpoolFile") || die ("Cannot open $sqlSpoolFile");
  while ($fileline=<SPOOLFILE>)
  {
    chomp ($fileline);          # Get rid of the trailling \n
          
    $fileline =~ s/^\s*//;     # Remove spaces at the start of the line
          
    $fileline =~ s/\s*$//;     # Remove spaces at the end of the line
          
    if($fileline ne ""){
      @_stepVerFile[$stepVerFileCount] = $fileline ;
      $stepVerFileCount += 1;
    }
  }

printLogAndOut("mm_fileline-Abel : @_stepVerFile\n",1);   

  close SPOOLFILE || die "ERROR: Can not close file : $sqlSpoolFile";
  unlink $sqlSpoolFile if(-f $sqlSpoolFile);

}

论坛徽章:
0
2 [报告]
发表于 2013-05-23 09:29 |只看该作者
@_stepVerFile 这个数组里面的数据在b和03之间是没有空格的。

论坛徽章:
0
3 [报告]
发表于 2013-05-23 09:53 |只看该作者
回复 2# th0806


    奥妙在printLogAndOut里吧,去看看

论坛徽章:
0
4 [报告]
发表于 2013-05-23 10:04 |只看该作者
摁,发现问题在打出到files_spoolfile.txt是,数据就变成了如下这样:
--------------------------------------------------------------------------------------------------

oaf:20130518:/crcfmsnfs/deployment/wuhan/20130518/code/oaf/crc/oracle/apps/cux/b
03/ap/payrequest/webui/CuxApCheckAttUPPG.xml                                    
                                                                                
oaf:20130518:/crcfmsnfs/deployment/wuhan/20130518/code/oaf/crc/oracle/apps/cux/b
03/ap/payrequest/webui/CuxApPayRequestPG.xml
     
------------------------------------------------------------                              
                                            

论坛徽章:
0
5 [报告]
发表于 2013-05-23 10:46 |只看该作者
现在的问题是为什么数据在输出到files_spoolfile.txt后,会在第80个字符产生折行或者是换行?

论坛徽章:
0
6 [报告]
发表于 2013-05-23 11:05 |只看该作者
贴一下代码:printLogAndOut

论坛徽章:
0
7 [报告]
发表于 2013-05-23 11:24 |只看该作者
找到原因了,居然是。。。。

SQL>set linesize 80;     //输出一行字符个数,缺省为80

论坛徽章:
7
戌狗
日期:2013-12-15 20:43:38技术图书徽章
日期:2014-03-05 01:33:12技术图书徽章
日期:2014-03-15 20:31:17未羊
日期:2014-03-25 23:48:20丑牛
日期:2014-04-07 22:37:44巳蛇
日期:2014-04-11 21:58:0915-16赛季CBA联赛之青岛
日期:2016-03-17 20:36:13
8 [报告]
发表于 2013-05-23 14:13 |只看该作者
本帖最后由 rubyish 于 2013-05-23 13:20 编辑

奇怪的发现
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP