摘要: 1 import java.util.List; 2 3 import org.springframework.beans.factory.annotation.Autowired; 4 import org.springframework.context.ApplicationContext; 5 import org.springframework.context.support... 阅读全文
posted @ 2017-11-30 22:56 龙芳伟 阅读(266) 评论(0) 推荐(0)
摘要: string str = "123abc456"; int i = 3; 1. 取字符串的前i个字符 2. 去掉字符串的前i个字符 3. 从右边开始取i个字符 4. 从右边开始去掉i个字符 5. split()+正则表达式来进行截取。 将正则传入split()。返回的是一个字符串数组类型。不过通过这 阅读全文
posted @ 2017-11-30 22:46 龙芳伟 阅读(62916) 评论(0) 推荐(1)