1樓:小小小魚生活
#regionbreakstring:獲取指定長度的字元,一段中文字串前兩個字元。///。
串接子串:對於 σ* 中的兩個字串 s 和 t,它們的串接被定義為在 s 中的字串行之後跟隨著 t 中的字串行,並被指示為 st。例如,σ = ,並且 s = bear 且 t = hug,則 st = bearhug 而 ts = hugbear。
空串充當單位;對於任何字串 s,有 εs = sε = s。所以,集合 σ* 和串接運算形成了么半群,就是從 σ 生成的自由么半群。此外,長度函式定義從 σ* 到非負整數的么半群同態。
2樓:
string string =string.substring(0,2);
3樓:匿名使用者
string a =b.substring(0,2);
.net(c#)怎麼擷取字串中間幾個字元?
4樓:匿名使用者
c#中有substring(int startindex,int len)方法。也就是substring()函式。
例子:string tempstring="abcdef";
tempstring.substring(1,3)即可得到字串"bcd"。
5樓:匿名使用者
用split方法
比如,你有一串字元是a,b,c
你可以用split(",")方法將這個字串分割後的字串,a和b和c放到乙個陣列裡,那麼這個陣列,假設名稱是p,那麼p[0]="a",p[1]="b",p[2]="c"
6樓:匿名使用者
string s = "jalkjfalskd";
string s1 = s.substring(3, s.length - 3);
c#中怎樣擷取兩特定字元之間的字串
7樓:墨汁諾
indexof 已過載。 報告 string 或乙個或多個字元在zd此字串中的第乙個匹配項的索引。
indexof(char) 報告指定 unicode 字元在此字串中的第乙個匹配項的索引。
string stra = "abcdefghijk";
string strtempa = "c";
string strtempb = "j";
//要求c---g之間的字串,也就是:defghi
//求得strtempa 和 strtempb 出現的位置:
int indexofa = stra.indexof(strtempa);
int indexofb = stra.indexof(strtempb);
string ru = stra.substring(indexofa + 1, indexofb - indexofa -1);
console.writeline("ru = " + ru); //
console.readline();
8樓:
string s ="abcd";
console.writeline(s.substring(1));//從第二位一直擷取到最後,輸出"bcd"
console.writeline(s.substring(2,2));//從第三位開始擷取兩位,輸出"bc"
9樓:匿名使用者
string stra = "abcdefghijk";
string strtempa = "c";
string strtempb = "j";
//我們要求c---g之間的字串,也就是:defghi
//求得strtempa 和 strtempb 出現的位置:
int indexofa = stra.indexof(strtempa);
int indexofb = stra.indexof(strtempb);
string ru = stra.substring(indexofa + 1, indexofb - indexofa -1);
console.writeline("ru = " + ru); //----這就是你要的結果
console.readline();
10樓:匿名使用者
string a = "12312a!@#$%^798bxvbn";
int i= a.indexof("a");//找a的位置int j = a.indexof("b");//找b的位置a = (a.
substring(i + 1)).substring(0, j - i - 1);//找出a和b之間的字串
結果:!@#$%^798
11樓:
string s="dddacccbfff";
string newstring = s.indexof('a')+1,s.indexof('b')-s.indexof('a')-1);
已測試過了
哈哈樓上真夠快的
12樓:鑫興鴻裝飾幫助
就樓上那個方法,不過開始的時候把兩個特定的字元位子先定位出來就可以了indexof
c#擷取字串去兩符號之間的字元
13樓:sxzy灬丨小柒
c# code
string str = " 20*30*50";
str = str.substring(str.indexof("*"),str.lastindexof("*"));
請求大神,c#如何擷取字串中指定字元之間的部分
14樓:匿名使用者
第一題:
static void main(string args)第二題:
static void main(string args)
15樓:灰姑娘的霸氣
string stra = "abcdefghijk";
string strtempa = "c";
string strtempb = "j";
//我們要求c---g之間的字串,也就是:defghi
//求得strtempa 和 strtempb 出現的位置:
int indexofa = stra.indexof(strtempa);
int indexofb = stra.indexof(strtempb);
string ru = stra.substring(indexofa + 1, indexofb - indexofa -1);
console.writeline("ru = " + ru); //----這就是你要的結果
console.readline();
16樓:蒙雨抒懷
split("/nr")?
C語言中如何擷取字串的前幾個字元
自寫的字串擷取程式,不懂可以繼續問 系統裡的擷取前n個字元是strncpy include include char mystrncpy const char string,int n else i p p 0 賦值結束字串return string intmain 你將字串a,b都事先初始化一遍。...
c語言從鍵盤輸入兩個字串,將字串連線到字串的後面,並輸出連線
include include int main char s1 char s2 char output printf please input the first string scanf s s1 printf please input the second string scanf s s2 ...
在js中怎麼判斷兩個字串相等,js中怎麼判斷兩個string型別相等
s中字串比較值用 不同型別間比較,之比較 轉化成同一型別後的值 看 值 是否相等var str1 a var str2 b var str1 a if str1 str2 s中字串比較資料型別和值用 如果型別不同,其結果就是不等var str2 1 var str2 b var str1 a if ...