Hey folks,
I was running into a eol error when calculating a field with string values that have carriage returns.
The statement I was using was:
My work around was as follows:
My question is simple, why is this an issue?
I was running into a eol error when calculating a field with string values that have carriage returns.
The statement I was using was:
Code:
!field_name!
Code:
'''!field_name!'''[2:-1].replace('\n',' ').strip()