代码搜索:split
找到约 9,328 项符合「split」的源代码
代码结果 9,328
www.eeworm.com/read/128494/14293365
c jfs_dtree.c
/*
* Copyright (C) International Business Machines Corp., 2000-2004
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public L
www.eeworm.com/read/127767/14336133
txt e824. getting the setting the children in a jsplitpane container.txt
// Create a left-right split pane
JSplitPane hpane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, leftComponent, rightComponent);
// Create a top-bottom split pane
JSplitPane vpane
www.eeworm.com/read/127767/14336840
txt e431. parsing character-separated data with a regular expression.txt
A line from a flat-file is typically formatted using a separator character to separate the fields. If the separator is simply a comma, tab, or single character, the StringTokenizer class can be used t
www.eeworm.com/read/126690/14406546
java interpunction.java
import java.util.regex.*;
/**分析出标点符号
*/
public class Interpunction{
String split[];
public Interpunction(String t){
/**对String t进行分析,得出标点符号
*/
Pattern p=Pattern.compile("[\\w]+");
www.eeworm.com/read/226770/14452797
c pathexec_env.c
/* Public domain. */
#include "stralloc.h"
#include "alloc.h"
#include "str.h"
#include "byte.h"
#include "env.h"
#include "pathexec.h"
static stralloc plus;
static stralloc tmp;
int pathexec_env(c
www.eeworm.com/read/124842/14534182
m psplit.m
function [tx,ty,vx,vy]=pslit(x,y,p)
%
% Positional percentage split
%
% p defines the position to split the data
% 0-p (%) = training
% p-100 (%) = validation
%
[D L]=size(x);
tsiz
www.eeworm.com/read/124570/14558496
java twowaynumericsplit.java
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either vers
www.eeworm.com/read/124570/14558507
java twowaynominalsplit.java
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either vers
www.eeworm.com/read/224759/14568300
m explode.m
function [split,numpieces]=explode(string,delimiters)
%EXPLODE Splits string into pieces.
% EXPLODE(STRING,DELIMITERS) returns a cell array with the pieces
% of STRING found between any of t