Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Tcl Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Tcl) CSV Get Contents of Cell

Demonstrates the GetCell method (to get the contents of a cell by row/column index).

Chilkat Tcl Extension Downloads

Chilkat Tcl Extension Downloads

load ./chilkat.dll

# We have the following CSV...

# permalink,company,numEmps,category,city,state,fundedDate,raisedAmt,raisedCurrency,round
# lifelock,LifeLock,,web,Tempe,AZ,1-May-07,6850000,USD,b
# mycityfaces,MyCityFaces,7,web,Scottsdale,AZ,1-Jan-08,50000,USD,seed
# flypaper,Flypaper,,web,Phoenix,AZ,1-Feb-08,3000000,USD,a
# infusionsoft,Infusionsoft,105,software,Gilbert,AZ,1-Oct-07,9000000,USD,a
# gauto,gAuto,4,web,Scottsdale,AZ,1-Jan-08,250000,USD,seed

set bCrlf 1
set sb [new_CkStringBuilder]

CkStringBuilder_AppendLine $sb "permalink,company,numEmps,category,city,state,fundedDate,raisedAmt,raisedCurrency,round" $bCrlf
CkStringBuilder_AppendLine $sb "lifelock,LifeLock,,web,Tempe,AZ,1-May-07,6850000,USD,b" $bCrlf
CkStringBuilder_AppendLine $sb "mycityfaces,MyCityFaces,7,web,Scottsdale,AZ,1-Jan-08,50000,USD,seed" $bCrlf
CkStringBuilder_AppendLine $sb "flypaper,Flypaper,,web,Phoenix,AZ,1-Feb-08,3000000,USD,a" $bCrlf
CkStringBuilder_AppendLine $sb "infusionsoft,Infusionsoft,105,software,Gilbert,AZ,1-Oct-07,9000000,USD,a" $bCrlf
CkStringBuilder_AppendLine $sb "gauto,gAuto,4,web,Scottsdale,AZ,1-Jan-08,250000,USD,seed" $bCrlf

set csv [new_CkCsv]

# Indicate that the 1st line contains column names.
CkCsv_put_HasColumnNames $csv 1
set success [CkCsv_LoadFromString $csv [CkStringBuilder_getAsString $sb]]

# Get the contents of the cell at row 2 column 5, which is "Scottsdale".
# Indexes are 0-based.  The 2nd row is at index 1, and the 5th column is at index 4.
# (The row of column names is not a data row.)
set cellContent [CkCsv_getCell $csv 1 4]
puts "$cellContent"

# Output should be "Scottsdale"

delete_CkStringBuilder $sb
delete_CkCsv $csv

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.