VB中,如何將字串分割成所需要的字元

時間 2022-02-07 22:50:12

1樓:飄葉雜談

dim s as string

dim sv1() as string

dim sv2() as string

s="s11+s20+s31+dl1"

sv1=split(s,"+",-1)

redim sv2(ubound(sv1))for x= 0 to ubound(sv1)sv1(x)=left(sv1(x),2)sv2(x)=right(sv1(x),1)debug.print sv1(x) & " " & sv2(x)

next

以上程式,儲存並輸出了陣列內容

2樓:

不要字串裡面的「+」號可以用replace函式

replace(str,"+","")

3樓:匿名使用者

private sub command1_click()dim s as string

s = "s11+s20+s31+dl1"

dim a, b

a = split(s, "+")

b = array(1, 0, 1, 1)end sub

4樓:匿名使用者

dim str as string

dim arr as string ()

str = "s11+s20+s31+dl1"

arr = split(str, "+")

5樓:匿名使用者

用split()函式,具體用法請參見msdn

vb字串從指定字串分割

6樓:四舍**入

private sub command1_click()dim s as string

s = "123456----hdahdkahd----2013.1.1"

dim a

a = split(s, "----")

if isarray(a) then

text1.text = a(1)

end if

end sub

7樓:veket的小號

親 , 用split函式 分割字串得到陣列private sub command1_click()dim s as string

s = "123456----hdahdkahd----2013.1.1"

dim a

a = split(s, "----")

if isarray(a) then

text1.text = a(1)

end if

end sub

8樓:

x=split("123456----hdahdkahd----2013.1.1","----")

text1.text=x(1)

9樓:匿名使用者

private sub command1_click()dim s as string

dim st as string

dim i, l as integer

s = "123123-123-sdfsdfsdfs--2342342"

st = ""

l = len(s)

for i = 1 to l

if 97 < asc(mid(s, i, 1)) and asc(mid(s, i, 1)) < 122 then

st = st & mid(s, i, 1)end if

next i

text1.text = st

end sub

要分啊 呵呵

php怎麼把字串指定字元分割成陣列?

10樓:相逢一笑泯仇恩

<?php

$str="1|抄2|3|4|5|";

$var=explode("|",$str);

print_r($var);

?>

$var=explode("|",$str);

把$str按|進行分割

php還有其他的把字串指定字元分割成陣列str_split(string,length)引數 描述string 必需。規定要分割的字串。

length 可選。規定每個陣列元素的長度。預設是 1。

json_decode()這個函式也可以把字串分割成陣列 (第二個引數為true才行)

C 中,字串怎麼轉數值,C 如何將字串(由數字組成)轉換為 int型數字,以用於計算

atoi函式 或者你自己寫 atoi 標頭檔案 include int main void 輸出結果會是12345 風火辰 atof 將字串轉換成浮點型數 atoi 將字串轉換成整型數 atol 將字串轉換成長整型數 strtod 將字串轉換成浮點數 strtol 將字串轉換成長整型數 strtou...

怎樣將php裡的漢字字串分割成單個字元

那要看你的編碼,通常來說是ansi的,這種情況下字元的編碼 ascii 英文數字和半形符號是一個位元組,而且這個位元組的值小於127。漢字佔兩個位元組,且每個位元組都小於0 或者無符號大於128 你把字串逐個字元判斷,篩選就可以了。unicode編碼,所有字元都是兩個位元組,漢字不變,英文數字和半形...

keil c中如何將整型轉化為字串

你是要把數字轉換成字串吧 char ch 3 int i 345 ch 0 i 100 48 取百位ch 1 i 10 10 48 取十位ch 2 i 10 48 取個位就這個思路吧 還有keil c中沒有檔案操作的函式 一騎當後 可以使用sscanf,就像sprintf將整型數轉換成字串輸出一樣,...