字串的乙個操作 替換類似陣列字串中的項

2021-09-05 21:52:10 字數 1003 閱讀 3234

using

system;

using

system.data;

using

system.configuration;

using

system.collections;

using

system.web;

using

system.web.security;

using

system.web.ui;

using

system.web.ui.webcontrols;

using

system.web.ui.webcontrols.webparts;

using

system.web.ui.htmlcontrols;

public

partial

class

test_str : system.web.ui.page

private

void

bind()

//////

要實現的是將"1,2,12,13"這樣的字串中的某個字串替換為空

///比如如果替換"1"則替換之後為"2,12,13"不能把12中的1也替換了

///如果替換12則替換後為"1,2,13"

///

///陣列型字串

///要替換掉的字串

///private

string

replaceone(

string

arrstr, 

string

one)

//如果以要替換的字串結尾"1,2,one"

if(arrstr.endswith(",

"+one))

//字串頭部與中間,都可以這樣替換

arrstr 

=arrstr.replace(one +"

,", ""

);return

arrstr;}}

字串的乙個操作 替換類似陣列字串中的項

using system using system.data using system.configuration using system.collections using system.web using system.web.security using system.web.ui usin...

解析乙個類似xml的字串

這是乙個簡單的資料結構問題,本來以為這是中檔題,但是好像是高估它了,這個只能算是個簡單的問題。問題是這樣的,程式會接收到乙個字串,需要實現用這個字串給乙個結構賦值,有點類似xml解析。把過程記錄下來 有乙個字串,字串中包含三種型別的資料資訊 陣列,結構,普通元素。陣列用包起來,結構用 包起來,普通元...

字串替換問題 「乙個換多個」

將字串中的空格替換成 2 0 1 該問題最簡單的解決辦法是重新申請乙個新的字串陣列,遍歷原字串陣列。若是非空格就直接拷貝到新陣列,若是空格就直接在新陣列中加入 2 0 三個字元。最後遍歷結束,將新字串拷貝給就字串,釋放新申請的字串的記憶體空間。但該方法的空間複雜度比較高,因此可能在一定的條件下不太適...