python 2.7 - Python2.7/ NLTK remove part of string before certain character -
i reading csv file, containing 371 lines of text.
0þ"text including numbers , quotes"þ4.6
i trying extract texting between þ" , "þ. how can this?
awk -f'þ"|"þ' '{print $2}' data.csv
the above command prints 2nd column of each row in file data.csv
,
columns separated either þ"
or "þ
.
Comments
Post a Comment