Top "Tokenize" questions

Tokenizing is the act of splitting a string into discrete elements called tokens.

Convert comma separated string to array in PL/SQL

How do I convert a comma separated string to a array? I have the input '1,2,3' , and I need …

oracle plsql tokenize
Scanner vs. StringTokenizer vs. String.Split

I just learned about Java's Scanner class and now I'm wondering how it compares/competes with the StringTokenizer and String.…

java java.util.scanner tokenize split
Tokenizing Error: java.util.regex.PatternSyntaxException, dangling metacharacter '*'

I am using split() to tokenize a String separated with * following this format: name*lastName*ID*school*age % name*lastName*…

java regex split tokenize
Tokenizing strings in C

I have been trying to tokenize a string using SPACE as delimiter but it doesn't work. Does any one have …

c string tokenize
How do I tokenize a string sentence in NLTK?

I am using nltk, so I want to create my own custom texts just like the default ones on nltk.…

python nlp tokenize nltk
Splitting comma separated string in a PL/SQL stored proc

I've CSV string 100.01,200.02,300.03 which I need to pass to a PL/SQL stored procedure in Oracle. Inside the proc,I …

oracle plsql tokenize
Split string by a character?

How can I split a string such as "102:330:3133:76531:451:000:12:44412 by the ":" character, and put all of the numbers into an int …

c++ arrays string split tokenize
NSString tokenize in Objective-C

What is the best way to tokenize/split a NSString in Objective-C?

objective-c cocoa tokenize
How do you extract only the date from a python datetime?

I have a dataframe in python. One of its columns is labelled time, which is a timestamp. Using the following …

python datetime pandas tokenize
strsep() usage and its alternative

#include <stdio.h> #include <string.h> int main() { char *slogan = "together{kaliya} [namak]"; char *slow_gun = …

c string tokenize strsep