Is it possible to do a substring(0,10) with the BulkAttributeRenamer? I want to simulate truncating the columns as writing to shape does. I know I can do this with a SchemaMapper, this is my current workaround.
Page 1 / 1
Hi @nielsgerrits, yes it's possible. Try this.
Text To Find: ^(.{10}).*
String: \1
You can use the regex replacement method. For example, this will truncate all attribute names to the first 10 characters:
Hi @nielsgerrits, yes it's possible. Try this.
Text To Find: ^(.{10}).*
String: \1
Hi @nielsgerrits, yes it's possible. Try this.
Text To Find: ^(.{10}).*
String: \1
You can use the regex replacement method. For example, this will truncate all attribute names to the first 10 characters: