首页 > 代码库 > 字符串中的几种常用的方法
字符串中的几种常用的方法
using UnityEngine;using System.Collections;public class UserRegister : MonoBehaviour { void Start () { string s = " http://www.taikr.com "; print(s); string s1=s.Trim();//Trim()去掉两端的空格。 print(s1); string s2 = "http://www.takir.com"; int index=s2.IndexOf("takir");//Index0f(string str)返回str的位置,匹配第一个。 print(index);//结果11,从零开始数,不存在则为-1 string s3 = "Siki is a good man,he singing good!"; int index1=s3.LastIndexOf("good");//LastIndexOf(string str);返回最后一个匹配 print(index1);//30,不存在则为-1 }}
字符串中的几种常用的方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。