幾個經(jīng)常用到的字符串的截取
創(chuàng)新互聯(lián)建站是由多位在大型網(wǎng)絡(luò)公司、廣告設(shè)計(jì)公司的優(yōu)秀設(shè)計(jì)人員和策劃人員組成的一個具有豐富經(jīng)驗(yàn)的團(tuán)隊(duì),其中包括網(wǎng)站策劃、網(wǎng)頁美工、網(wǎng)站程序員、網(wǎng)頁設(shè)計(jì)師、平面廣告設(shè)計(jì)師、網(wǎng)絡(luò)營銷人員及形象策劃。承接:成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、網(wǎng)站改版、網(wǎng)頁設(shè)計(jì)制作、網(wǎng)站建設(shè)與維護(hù)、網(wǎng)絡(luò)推廣、數(shù)據(jù)庫開發(fā),以高性價比制作企業(yè)網(wǎng)站、行業(yè)門戶平臺等全方位的服務(wù)。
string str="123abc456";
int i=3;
1 取字符串的前i個字符
str=str.Substring(0,i); // or str=str.Remove(i,str.Length-i);
2 去掉字符串的前i個字符:
str=str.Remove(0,i); // or str=str.Substring(i);
3 從右邊開始取i個字符:
str=str.Substring(str.Length-i); // or str=str.Remove(0,str.Length-i);
4 從右邊開始去掉i個字符:
str=str.Substring(0,str.Length-i); // or str=str.Remove(str.Length-i,i);
5 判斷字符串中是否有"abc" 有則去掉之
using System.Text.RegularExpressions;
string str = "123abc456";
string a="abc";
Regex r = new Regex(a);
Match m = r.Match(str);
if (m.Success)
{
//綠色部分與紫色部分取一種即可。
str=str.Replace(a,"");
Response.Write(str);
string str1,str2;
str1=str.Substring(0,m.Index);
str2=str.Substring(m.Index+a.Length,str.Length-a.Length-m.Index);
Response.Write(str1+str2);
}
6 如果字符串中有"abc"則替換成"ABC"
str=str.Replace("abc","ABC");
************************************************
string str="adcdef"; int indexStart = str.IndexOf("d");
int endIndex =str.IndexOf("e");
string toStr = str.SubString(indexStart,endIndex-indexStart);
c#截取字符串最后一個字符的問題!
str1.Substring(str1.LastIndexOf(",")+1)
Android中有許多寫法創(chuàng)建事件處理方式,一般會使用Android:onClick屬性來指定。
舉例說明:
實(shí)現(xiàn)攝氏溫度到華氏溫度的轉(zhuǎn)變
1、
EditText editText1 =(EditText) findViewById (R.id.editText1)
c=Integer.parseInt(editText1.getText().toString());
用來獲取editText1中的信息
2、
EditText editText2 =(EditText) findViewById (R.id.editText2);
f=(9.0*c)/5.0+32.0;
editText2.setText(String.valueOf(f));
通過editText1 獲取的信息然后經(jīng)過計(jì)算
將計(jì)算的結(jié)果返回editText2中然后在editText2中顯示出來
擴(kuò)展資料:
EditText 控件的用法
EditText 在開發(fā)中也是經(jīng)常用到的控件,也是一個比較必要的組件。
它是用戶跟Android應(yīng)用進(jìn)行數(shù)據(jù)傳輸?shù)拇皯簟?/p>
1、android:text設(shè)置文本內(nèi)容。?
2、android:textColor字體顏色。?
3、android:hint內(nèi)容為空時候顯示的文本。?
4、android:textColorHint為空時顯示的文本的顏色。?
5、android:maxLength限制顯示的文本長度,超出部分不顯示。?
6、android:minLines設(shè)置文本的最小行數(shù)。?
7、android:gravity設(shè)置文本位置,如設(shè)置成“center”,文本將居中顯示。?
8、android:drawableLeft在text的左邊輸出一個drawable,如圖片。?
1、通過File獲取文件
2、打開輸入流,讀取文件
寫文件:
1、創(chuàng)建文件
2、打開輸出流,寫入文件內(nèi)容
示例:
12345678910111213
讀文件:String content = ""; //文件內(nèi)容字符串 //通過路徑/sdcard/foo.txt打開文件 File file = new File("/sdcard/foo.txt"); try { InputStream instream = new FileInputStream(file);//讀取輸入流 InputStreamReader inputreader = new InputStreamReader(instream);//設(shè)置流讀取方式 BufferedReader buffreader = new BufferedReader(inputreader); while (( line = buffreader.readLine()) != null) { content += line + "\n";//讀取的文件內(nèi)容 } }catch(Exception ex){ }
寫文件: File file = new File("/sdcard/foo.txt");// if(!file.exists()) file.createNewFile();//如果文件不存在,創(chuàng)建foo.txt try { OutputStream outstream = new FileOutputStream(file);//設(shè)置輸出流 OutputStreamWriter out = new OutputStreamWriter(outstream);//設(shè)置內(nèi)容輸出方式 out.write("文字內(nèi)容");//輸出內(nèi)容到文件中 out.close(); } catch (java.io.IOException e) { e.printStackTrace(); }