当前位置: 编程技术>java/j2ee
从字符串中截取等长字节的Java代码
来源: 互联网 发布时间:2014-10-30
本文导语: 在页面显示的时候,有时候文字无法显示完全,就只能显示部分文字,但是直接截取就只能截取等长字符串,英文和中文很难处理所以就写了下面方法,截取等长字符 代码如下:public static void main(String[] args) { String str = "201201...
在页面显示的时候,有时候文字无法显示完全,就只能显示部分文字,但是直接截取就只能截取等长字符串,英文和中文很难处理
所以就写了下面方法,截取等长字符
public static void main(String[] args) {
String str = "20120131:《回家》1你好么" ;
System.out.println( subString(str , 10 ) ) ;
}
public static String subString(String str , int len){
len *= 2 ;
byte[]bytes = str.getBytes() ;
if(bytes.length
支持中文和其他编码的php截取字符串函数分享(截取中文字符串)
php截取字符串之截取utf8或gbk编码的中英文字符串示例
php如何截取字符串后四位
php截取字符串(无乱码 utf8)
linux/unix字符串截取
Thinkphp模板中截取字符串函数简介
php中文字符串截取函数示例
C#截取字符串长度(整齐划一)的代码
linux c 中怎么从字符串中截取从第5为开始长4个字符的数剧?
截取字符串问题
字符串截取问题
标准C有没有截取字符串的函数?
shell脚本 截取字符串的问题
关于字符串的接受,截取和处理···
怎样在GCC中从右侧截取指定长度字符串...
php截取中文字符串(无乱码)方法
php截取中文字符串不乱码的方法
mysql截取的字符串函数substring_index的用法
sql带分隔符的截取字符串示例
所以就写了下面方法,截取等长字符
代码如下:
public static void main(String[] args) {
String str = "20120131:《回家》1你好么" ;
System.out.println( subString(str , 10 ) ) ;
}
public static String subString(String str , int len){
len *= 2 ;
byte[]bytes = str.getBytes() ;
if(bytes.length