package test; public class test1_format { public static void main(String[] args) { System.out.println("1&".split("&").length);//长度为1 System.out.println("1&1".split("&").length);//长度为2 System.out.prin…
读取文件,每行拆分,并比较拆分数组长度 #!/bin/bash FILENAME=./.txt function While_read_LINE(){ cat $FILENAME | while read LINE do str=$LINE OLD_IFS="$IFS" IFS=";" arr=($str) IFS="$OLD_IFS" lineLen=${#arr[@]} minLen= if [ $lineLen -le $minLen ];…
需求:获取字符串数组1,2,3,4的长度,当然也可以是其他分隔符1|2|3等 方法:通过自定义函数来实现 /* 获取字符串数组长度 */ from sysobjects where id = object_id('Get_StrArrayLength' )) drop Function Get_StrArrayLength go create function Get_StrArrayLength ( ), -- 要分割的字符串 ) -- 分隔符号 ) returns int as begin…
Reference: http://saiyaren.iteye.com/blog/1943207 1. Shell 读取文件和写文件 for line in $(<top30000.url.utf-8.http_server_front_hphp.txt); do tmp_port=8080; for((i=0;i<=7;i++));do echo ${line/192\.168\.12\.63/192\.168\.12\.63:$tmp_port} >>top3000…