[Seaside] How do I read a csv file from SeaSide

Romain Robbes rrobbes at info.unicaen.fr
Sat Sep 11 16:04:36 CEST 2004


Hi,
	You can use  String>>findTokens:

to do that :

'asdfasdfasdf' findTokens:  'a'  => an OrderedCollection('sdf' 'sdf' 
'sdf')
'asdfasdfasdf' findTokens:  'as'  => an OrderedCollection('df' 'df' 
'df')

Cheers,
	Romain

On Sep 11, 2004, at 3:51 PM, LK wrote:

> I have a .csv file  I want to parse is as a series of records, so that 
> it can viewed in seaside or saved to GOODS.  I can open the file, but, 
> I don't see any classes or methods for parsing a line into a 
> collection of fields. I'm sure there is a simple way of doing this. 
> Would you mind giving me a hint?
>
> -larry
>
> _______________________________________________
> Seaside mailing list
> Seaside at lists.squeakfoundation.org
> http://lists.squeakfoundation.org/listinfo/seaside
>



More information about the Seaside mailing list