代码搜索:split
找到约 9,328 项符合「split」的源代码
代码结果 9,328
www.eeworm.com/read/383056/8976774
js getvar.js
var url=location.search;
var Request = new Object();
if(url.indexOf("?")!=-1) {
var str = url.substr(1);
strs = str.split("&");
for(var i=0;i
www.eeworm.com/read/427066/8979077
cpp splitterwndex.cpp
//============================================================================
//
// Filename: splitterWndEx.cpp
// Description: Implementation of a splitter class that can have 2 pane
www.eeworm.com/read/185086/9057527
htm column.htm
#!/usr/bin/perl
# Mark Claypool
# Last significantly modified: December, 2001
# This program prints out fields of an indicated column.
# The columns are numbered 0, 1, 2, 3 ...
require 'getop
www.eeworm.com/read/184904/9066122
java chess.java
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.LinkedList;
public class Chess extends JFrame implements ActionListener
{
ChessBoard board
www.eeworm.com/read/184395/9106877
txt csreadmatrix.txt
C#里面如何将.txt文
件中的数据读入,存入数组。
主 题: C#里面如何将.txt文件中的数据读入,存入数组。
作 者: mayanmajesty ()
等 级:
信 誉 值: 100
所属论坛: .NET技术 C#
问题点数: 20
回复次数: 17
发表时间: 2006-7-25 20:35:16
www.eeworm.com/read/281848/9130346
java splitdemo14.java
// strings/SplitDemo14.java
// TIJ4 Chapter Strings, Exercise 14, page 541
// Rewrite SplitDemo using String.split().
import java.util.regex.*;
import java.util.*;
import static net.mindview.util
www.eeworm.com/read/182744/9193148
java word.java
import java.util.regex.*;
public class Word{
String split[];
public Word(String t){
Pattern p=Pattern.compile("[^a-zA-Z]+");
split=p.split(t);
if(split.length!=0&&split[0].compareTo("")=
www.eeworm.com/read/182744/9193171
java data.java
import java.util.regex.*;
public class Data{
String split[];
public Data(String t){
Pattern p=Pattern.compile("[^0-9]+");
split=p.split(t);
if(split.length!=0&&split[0].compareTo("")==0)
www.eeworm.com/read/379471/9195043
as ase.as
/**
* project3D Engine
* Ase loader
* @author John Sword
* @version 2 - AS3
*/
/*
* Copyright 2006 (c) Carlos Ulloa Matesanz, noventaynueve.com.
*
* Permission is hereby granted, fr