Hello,
We have a customer who is exporting documents out of a 3rd party application. They are able to take metadata from the third party application and put it in the name of the document they are exporting, with certain special characters (^, in this case) separating the field values so we can parse them out with Workflow and assign them to field values in Laserfiche. However, this application they're exporting from is putting excessive whitespace after the strings we're trying to capture. Example below:
Test Insurance Providers ^ TestBank ^ 0 ^ Nov 30 2007 12_00AM
We want to capture just "Test Insurance Providers" in this case. This particular string could be any amount of words separated by one whitespace character. We use [^\^]+ to capture everything before the first ^, but I can't seem to figure out how to exclude the whitespace.
Any help is appreciated. Thanks!