zoukankan      html  css  js  c++  java
  • 处理中英文的函数

    function Fuzhi135(s: string): string;
    var
      cCount,eCount,eCountNum,i,isum: Integer;
    begin
      cCount := 0;
      eCount := 0;
      eCountNum := 0;
      for i := 1 to length(s) do
      begin
        if ByteType(s, i) = mbSingleByte then
          inc(cCount)
        else if ByteType(s, i) = mbLeadByte then
        begin
          Inc(eCount);
          eCountNum := eCountNum + 2;
        end;
        isum := cCount+ eCount;
        if isum=135 then
          Break;
      end;
      Result := Copy(s,1,cCount+eCountNum);
    end;

    function Fuzhi5(s: string): string;
    var
      cCount,eCount,eCountNum,i,isum: Integer;
    begin
      cCount := 0;
      eCount := 0;
      eCountNum := 0;
      for i := 1 to length(s) do
      begin
        if ByteType(s, i) = mbSingleByte then
          inc(cCount)
        else if ByteType(s, i) = mbLeadByte then
        begin
          Inc(eCount);
          eCountNum := eCountNum + 2;
        end;
        isum := cCount+ eCount;
        if isum=135 then
          Break;
      end;
      Result := Copy(s,cCount+eCountNum+1,10);
    end;

    function TotalStrSum(s: string): Integer;
    var
      cCount,eCount,i: Integer;
    begin
      cCount := 0;
      eCount := 0;
      for i := 1 to length(s) do
      begin
        if ByteType(s, i) = mbSingleByte then
          inc(cCount)
        else if ByteType(s, i) = mbLeadByte then
          inc(eCount);
      end;
      Result := eCount+cCount;
    end;

  • 相关阅读:
    NYOJ 10 skiing DFS+DP
    51nod 1270 数组的最大代价
    HDU 4635 Strongly connected
    HDU 4612 Warm up
    POJ 3177 Redundant Paths
    HDU 1629 迷宫城堡
    uva 796
    uva 315
    POJ 3180 The Cow Prom
    POJ 1236 Network of Schools
  • 原文地址:https://www.cnblogs.com/batman425/p/3242756.html
Copyright © 2011-2022 走看看