ISs = da.SearchCursor("ISpoint_lyr", "*")
for IS in ISs:
for index in range(len(ISs.fields)):
if index <> shapeFieldIndex:
propStr += ";{0}".format(IS[index])
ISs = da.SearchCursor("ISpoint_lyr", "*")
for IS in ISs:
propStr = u""
for index in range(len(ISs.fields)):
if index <> shapeFieldIndex:
propStr += u";{0}".format(IS[index])
STR_result = STR_result.encode('utf8', 'replace')