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 } }
时间: 2024-11-10 20:19:42