代码搜索:Tokenize
找到约 228 项符合「Tokenize」的源代码
代码结果 228
www.eeworm.com/read/471161/1433142
c tokenize.c
/*
* This file defines the string_tokenize interface
* Time-stamp: "2006-06-24 15:27:49 bkorb"
*
* string_tokenize copyright 2005 Bruce Korb
*
* string_tokenize is free software; you can
www.eeworm.com/read/242732/4541051
h tokenize.h
// tokenize.h
#ifndef TOKENIZE_H
#define TOKENIZE_H
void tokenize ( const std::string& text, std::vector& tokens );
#endif//TOKENIZE_H
www.eeworm.com/read/242732/4541061
cpp tokenize.cpp
// tokenize.cpp
#ifdef _MSC_VER
#pragma warning ( disable : 4786 )
#endif//_MSC_VER
#include
#include
#include
#include "assert.h"
#include "tokenize.h"
#inc
www.eeworm.com/read/242732/4543660
c tokenize.c
/*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find f
www.eeworm.com/read/216802/4882579
h tokenize.h
// tokenize.h
#ifndef TOKENIZE_H
#define TOKENIZE_H
void tokenize ( const std::string& text, std::vector& tokens );
#endif//TOKENIZE_H
www.eeworm.com/read/216802/4882589
cpp tokenize.cpp
// tokenize.cpp
#ifdef _MSC_VER
#pragma warning ( disable : 4786 )
#endif//_MSC_VER
#include
#include
#include
#include "assert.h"
#include "tokenize.h"
#inc
www.eeworm.com/read/216802/4885999
c tokenize.c
/*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find f
www.eeworm.com/read/214352/4908685
java tokenize.java
package com.wutka.dtd;
import java.io.*;
import java.util.*;
import java.net.URL;
/** Example program to read a DTD and print out its object model
*
* @author Mark Wutka
* @version $Revis
www.eeworm.com/read/209211/4982607
c tokenize.c
#include
int
getfields(char *str, char **args, int max, int mflag, char *set)
{
Rune r;
int nr, intok, narg;
if(max
www.eeworm.com/read/209211/4982677
c tokenize.c
#include
#include
static char qsep[] = " \t\r\n";
static char*
qtoken(char *s, char *sep)
{
int quoting;
char *t;
quoting = 0;
t = s; /* s is output string, t is input string */