1樓:魚尾摯愛白菜
用命令 strrep(s1,s2,s3) ,在字串s1裡所有的s2被s3代替。
比如以下例子:
s1='this is a good boy';
strrep(s1,'good','great')returns 'this is a great boy';
strrep(s1,'bad','great') returns 'this is a good boy';
strrep(s1,'','great') returns 'this is a good boy';
2樓:
用命令 strrep(s1,s2,s3)
在字串s1裡所有的s2被s3代替
example:
s1='this is a good example';
strrep(s1,'good','great') returns 'this is a great example'
strrep(s1,'bad','great') returns 'this is a good example'
strrep(s1,'','great') returns 'this is a good example'
j**a怎樣將一個字串中指定位置的字元換掉,從而得到一個新的字串?
3樓:匿名使用者
string s="abcd";
string s1=s.replace(s.charat(i),'o');
這個是 指定位置為i,用o替換的程式。
或者直接。
string s1=s.substring(0,i-1);
string s2=s.substring(i+1);
string s=s1+s3+s2;
或者stringbuilder sb=new stringbuilder()
string s=sb.add(s1).add(s3),add(s2).tostring();
s3是你要代替的值 。例如上面的o
4樓:匿名使用者
string newstr=str.replace("old","new");
↑ ↑
新字串 替換
5樓:匿名使用者
str.replace(old,new);
求高人!求**!在j**a的字串中如何替換指定位置的字元
6樓:匿名使用者
可以用 stringbuilder 這個類試試,裡面有一個介面replace,如下
stringbuilder sb = new stringbuilder("sssaaa");
sb.replace(start, end, str);
7樓:小小點
string str = "13012345678";
system.out.println(str.replace(str.subsequence(3,9),"******"));
可以直接將字串的第4位到倒數第三位全部替換成*
8樓:修行魚
將4個1替換成4個3
string s = "001111222";
string s1 = s.replacefirst("(?<=\\s).", "3333");
system.out.println(s1);
怎樣將指定文字中的字串替換後生成新的文字檔案?
9樓:
import os
os.chdir('d:\\') # 跳到d盤
if not os.path.exists('pp.txt'): # 看一下這個bai
檔案du是否存zhi在
exit(-1) #,不存在就退出
lines = open('pp.txt').readlines() #開啟檔案,讀入每一行dao
fp = open('pp2.txt','w') #開啟你要寫
回得檔案pp2.txt
for s in lines:
fp.write( s.replace('love','hate').replace('yes','no')) # replace是替換,write是寫入答
fp.close() # 關閉檔案
MATLAB怎樣輸入漢字字串,matlab 輸出字串
祿新雁 disp a1 num2str a 1 首先介紹disp 函式 該函式在頁面上顯示一個陣列或者字串。作為一種普遍用法,可以記住disp 需要顯示的內容 這個萬能的格式,此處不解釋這樣使用的原因,略顯複雜了些。總之,的存在是為了能同時在一個函式中顯示多種資料。a1 中的 是在matlab中定義...
mcgs怎樣用按鈕給字串賦值,mcgs怎樣用一個按鈕給字串賦值?
du知道君 mcgs軟體中有關字串的函式有很多,不知道你說的是哪一個,下面列舉一些常用的,你看看是不是有幫助 一 進位制轉換 bin2i s 函式意義 把二進位制字串轉換為數值。返 回 值 開關型。參 數 s,字元型。實 例 bin2i 101 5。hex2i s 函式意義 把16進位制字串轉換為數...
字串類的設計 用c,C 題目 字串類的設計 一 定義點字串(string)類,包含存放字串的字元陣列和字串
匿名 熱心 public class stack public void push int x public int pop void main stack s new stack s.push 10 參考 string cstring 有寫費時間,不願寫,給你頂頂 chelsea 藍焱 看看stl...