字串解析

2021-07-26 03:35:20 字數 415 閱讀 2007

把字串中的元素分配到二維陣列中,例如把「1,2;3,4,5;6.7,,」把逗號和分號的內容分開放到二維陣列中

使用spring 中的spilt方法把字串分成兩個部分放到兩個一位陣列中,然後把兩個一位陣列 的內容放到二維陣列中

public class no6{

public static void main(string args){

double d;

string s = "1,2;3,4,5;6,7,8";

string sfirst = s.split(";"); //先按分號分開

d = new double[sfirst.length]; //開闢一維陣列存放分號隔開的

for(int i=0; i

解析字串

package com.practice.json import org.json.jsonarray import org.json.jsonexception import org.json.jsonobject import android.os.bundle import android.u...

java 字串解析

stringtokenizer tokenizer new stringtokenizer number,boolean bool true while tokenizer.hasmoretokens catch exception e 將字串轉化為陣列的方法 int gv int i 0 stri...

java 字串解析

stringtokenizer tokenizer newstringtokenizer number,boolean bool true while tokenizer.hasmoretokens catch exception e 將字串轉化為陣列的方法 intgv inti 0 stringt...