Example String stringToVector 004

 

 

Description

This example uses the optional 3rd and 4th Boolean argument to treat the {key} character as a field delimeter.

 

Details

(define S "Humpty~Dumpty~~") Returns: Humpty Dumpty

Returns the object ID of the Object Vector

(stringToVector S "~" true true) Returns: #<Vector 192613>

Display the contents of the Object Vector

(display #<Vector 192613>) Returns: #("Humpty" "Dumpty" "" "" )

Here is a function that prints out the contents of the tokenized String using the stringToVector function

(defun StringTokenizer(S) ;; Places the resulting Vector in the variable objVector (setq vector (stringToBVector S #\space)) (setq N (length vector)) ;; Prints out the contents of objVector (loop for n from 0 until N do (writeln vector[n] )) ) ;; end of StringTokenizer ;; add the method to the String Methods Dictionary (addMethod String: Token: StringTokenizer ) Returns: #<Dictionary 47916>

Invoke the function StringTokenizer on String S.

(define S "Humpty~Dumpty~~")
(Token: S)
Returns: Humpty
Dumpty

 

Related Examples

Here are examples of the stringToVector function at work.

String stringToVector 001 String stringToVector 002 String stringToVector 003 String stringToVector 004

 

Function Links

Here is the link to the current function used in this example.

stringToVector

Here are a number of links to other related functions.

stringToBVector(#void)

 

Argument Types

Here are the links to the data types of the arguments used in this example.

String Vector Text Character
ObjVector

Here are a number of links to examples having similar argument types.

BitVector addMethod 023 BitVector bitToIntegerVector 001 BitVector isBitVector 001 BitVector isType 020
BitVector ref 027 BitVector vectorFill 007 Boolean boolean 001 Boolean isType 011
Boolean setq 016 ByteVector isCharAlphabetic 003 ByteVector isCharAlphanumeric 003 ByteVector isCharLowercase 003
ByteVector isCharName 003 ByteVector isCharNumeric 003 ByteVector isCharUppercase 003 ByteVector isCharWhitespace 003
Character addMethod 013 Character cadd 001 Character ccompareEQ 001 Character ccompareGE 001
Character ccompareGT 001 Character ccompareLE 001 Character ccompareLT 001 Character ccompareNE 001
Character cdiv 001 Character character 001 Character cmod 001 Character cmul 001
Character compare 010 Character compareEQ 010 Character compareGE 010 Character compareGT 010
Character compareLE 010 Character compareLT 010 Character compareNE 010 Character comparison 010
Character csub 001 Character isEqual 008 Character isIdentical 008 Character isType 012
Character setq 017 Character sizeof 010 Character type 012 Context debugBrowsableProcs 001
Context disassemble 001 Context globalBinding 001 CpxVector apply 010 Date hour 001
Date isDate 001 Date isType 014 Date julian 001 Date minute 001
Date month 001 Date second 001 Date setq 019 Date time 001
Date time 002 Date year 001 Dictionary isDictionary 001 Dictionary isType 006
Dictionary new 004 Dictionary objectToDictionary 001 Dictionary objectToDictionary 002 Dictionary objectToDictionary 003
Dictionary objectToDictionary 004 Dictionary ref 007 Dictionary ref 008 Dictionary ref 009
Dictionary refAttributes 002 Dictionary refValues 002 Dictionary setAttributes 002 Dictionary setq 009
Dictionary sort 003 Directory isType 007 Directory new 005 Directory objectToDirectory 001
Directory objectToDirectory 002 Directory objectToDirectory 003 Directory objectToDirectory 004 Directory ref 010
Directory ref 012 Directory refAttributes 003 Directory refValues 003 Directory setAttributes 003
Directory setq 011 Error error 001 Error errorTrap 001 Error isError 001
Error onError 001 FileIO closeLog 001 FltVector binaryInsert 004 FltVector compareLE 014
FltVector compareLT 014 FltVector isFloatVector 001 FltVector isType 016 FltVector ref 022
FltVector vectorFill 003 Function isType 015 IntVector binaryInsert 005 IntVector bitToIntegerVector 002
IntVector isIntegerVector 001 IntVector isType 017 IntVector ref 023 IntVector vectorFill 004
Lambda balance 001 Lambda debugBrowsableProcs 001 Lambda defchild 001 Lambda define 001
Lambda deforphan 001 Lambda defriend 001 Lambda defun 001 Lambda defun 002
Lambda disassemble 001 Lambda globalBinding 001 Lambda ref 017 Lambda setq 015
Matrix binaryInsert 004 Matrix compareGT 007 Matrix compareLT 007 Matrix isType 009
Matrix matrixGaussianSubstitute 001 Matrix ref 015 Matrix ref 016 Matrix setq 014
Matrix vectorFill 002 NumMatrix isType 022 NumMatrix matrixGaussianSubstitute 001 NumMatrix ref 035
NumMatrix vectorFill 008 NumVector isNumberVector 001 NumVector isType 018 NumVector objectToNumVector 001
NumVector ref 024 NumVector svmRegression 001 NumVector vectorFill 005 Number isType 013
Number product 001 Number setq 018 ObjVector addMethod 022 ObjVector append 009
ObjVector compare 017 ObjVector compareEQ 014 ObjVector compareGE 014 ObjVector compareGT 014
ObjVector compareLE 014 ObjVector compareLT 014 ObjVector compareNE 014 ObjVector comparison functions 014
ObjVector copy 009 ObjVector delete 012 ObjVector insert 008 ObjVector isAtom 008
ObjVector isEqual 016 ObjVector isIdentical 015 ObjVector isObject 010 ObjVector isObjectVector 001
ObjVector isType 019 ObjVector length 011 ObjVector member 007 ObjVector ref 025
ObjVector remove 007 ObjVector resize 009 ObjVector reverse 006 ObjVector setCdr 009
ObjVector setLastCdr 009 ObjVector setq 022 ObjVector sizeof 017 ObjVector type 019
ObjVector uniqueInsert 007 ObjVector vectorFill 006 ObjectRepository exportTab 001 ObjectRepository importTab 001
PcodeVector isPcodeVector 001 PcodeVector ref 026 ShortVector isType 018 ShortVector ref 024
ShortVector vectorFill 005 String addMethod 001 String append 001 String append 002
String clean 001 String code 001 String compare 001 String compareEQ 001
String compareGE 001 String compareGT 001 String compareLE 001 String compareLT 001
String compareNE 001 String comparison functions 001 String defMethod 001 String defMethod 002
String downcase 001 String fileRead 001 String fileRead 002 String fileReadRecord 001
String fileWrite 001 String find 001 String find 002 String hashString 001
String isChar 001 String isCharAlphabetic 001 String isCharAlphanumeric 001 String isCharLowercase 001
String isCharName 001 String isCharNumeric 001 String isCharUppercase 001 String isCharWhitespace 001
String isEqual 001 String isEqual 002 String isObject 001 String isString 001
String isText 001 String isType 001 String isType 002 String isType 003
String left 001 String length 001 String length 002 String methodsOf 001
String methodsOf 002 String methodsOf 003 String mid 001 String new 001
String parse 001 String ref 001 String ref 002 String replace 001
String rept 001 String right 001 String send 001 String sizeof 001
String string 001 String string 002 String string 003 String stringCiEQ 001
String stringCiGE 001 String stringCiGT 001 String stringCiLE 001 String stringCiLT 001
String stringCiNE 001 String stringFill 001 String stringToBVector 001 String stringToBVector 002
String stringToBVector 003 String stringToVector 001 String stringToVector 002 String stringToVector 003
String stringToVector 004 String substitute 001 String substitute 002 String substring 001
String substring 002 String substringCiEQ 001 String substringCiGE 001 String substringCiGT 001
String substringCiLE 001 String substringCiLT 001 String substringCiNE 001 String text 001
String trim 001 String type 001 String upcase 001 String upcase 002
String upcase 003 Structure apply 002 Structure defstruct 001 Structure objectToStructure 001
Structure objectToStructure 002 Structure objectToStructure 003 Structure objectToStructure 004 Structure ref 004
Structure ref 006 Structure refAttributes 001 Structure refValues 001 Structure setAttributes 001
Structure setq 003 Structure setq 004 Structure setq 005 Structure setq 006
Symbol *< 001 Symbol +< 001 Symbol -< 001 Symbol /< 001
Symbol defMethod 003 Symbol downcase 002 Symbol isCharAlphabetic 002 Symbol isCharAlphanumeric 002
Symbol isCharLowercase 002 Symbol isCharName 002 Symbol isCharNumeric 002 Symbol isCharUppercase 002
Symbol isCharWhitespace 002 Symbol isObject 002 Symbol isSymbol 001 Symbol isType 004
Symbol length 003 Symbol makeQuotedSymbol 001 Symbol send 002 Symbol sizeof 002
Symbol symbol 001 Symbol symbol 002 Symbol type 002 Vector addMethod 007
Vector append 006 Vector appendWriteln 001 Vector apply 003 Vector apply 004
Vector binaryInsert 002 Vector binaryInsert 003 Vector binarySearch 003 Vector binarySearch 004
Vector cdr 005 Vector cdr 006 Vector compare 006 Vector compareEQ 006
Vector compareGE 006 Vector compareGT 006 Vector compareLE 006 Vector compareLT 006
Vector compareNE 006 Vector comparison functions 006 Vector copy 004 Vector copy 005
Vector count 004 Vector defmethod 008 Vector delete 007 Vector delete 008
Vector insert 004 Vector inside 004 Vector isAtom 004 Vector isEqual 004
Vector isIdentical 004 Vector isObject 006 Vector isType 008 Vector isVector 001
Vector length 007 Vector map 004 Vector mapc 004 Vector member 004
Vector methodsOf 009 Vector new 007 Vector new 008 Vector objectToVector 001
Vector ref 013 Vector ref 014 Vector refAttributes 004 Vector refValues 004
Vector remove 004 Vector resize 004 Vector reverse 001 Vector send 006
Vector setAttributes 004 Vector setAttributes 005 Vector setBlock 001 Vector setCdr 004
Vector setLastCdr 002 Vector setq 012 Vector setq 013 Vector sizeof 006
Vector sort 010 Vector sort 011 Vector type 009 Vector uniqueInsert 003
Vector vectorFill 001 Void isType 010 Void ref 017 Void setq 015
substringEQ 001 substringFill 001 substringGE 001 substringGT 001
substringLE 001 substringLT 001 substringNE 001

Analytic Information Server (AIS)

AIS Component Systems

  • Smartbase Engine
  • QT C++ Libraries
  • MySQL Relational Database
  • AIS Lisp Libraries
  • Rapid Analytic Demo IDE