hey Jarrod,
i didn't see anything in there that started with VE but did see a bunch of what i thought were variables (and please correct me if i'm wrong) that started with USVe so i went with that...here's a formula that you could use that displays all instances of a certain token of your field:
stringvar f:= "AERA-1007:1,AIPG-1000:1,GLAD-0001:1,FBDD-0006-AX1:1,DRUM-0001-AX1:2,BSYS-0001:1,NOSE-0003:1,UCUP-1001:1,LITE-0001:1,WIRE-0002:1,FFDR-1001:1,RFDR-1002:1,LWHC-1000:0,PPCV-1000:1,PRDL-1002:1,RDOC-1000:1,"+
"StartAction='Run New',USStockTruck='Stock Truck',USWheelbase=187,USRearAxleWeight=7000,USFrontAxleWeight=9500,USFifthWheelHeight=48.5,USModel='',USCapacity='',USDomicile='',USDuty='',USGVWR='',USHoppers='',USAxleConfiguration='CT',USAxleAddCount='None',USWidth='96',USApplication='',USLadderManhole2='None',USLadderManhole3='None',USLadderManhole4='None',USLadderManhole5='',USFrameFront='',USWalkwayTread='Adhesive',USManhole1='None',USType='',USVesselMaterial='Mill',USVesselInternalWeld='Class I',USLowerHopperCones='WO45',USHopperAccessDoor='None',USVesselInternalBaffles='Standard',USVesselInternalBaffles23='Standard',USVesselInternalBaffles34='Standard',USVesselInternalBaffles45='Standard',USManholeHardware1='',USManholeHingeDirection1='',USLadderManhole1='None',USLadderOffsetRear='None',USLadderSide='None',USLadderTwoTier='None',USManhole2='None',USManholeHardware2='',USManholeHingeDirection2='',USFrameRear='',USChassisAluminumFrontFrameCovers='None',USWalkwaySides='None',USFallProtection='None',USFallProtectionLocation='None'";
stringvar t:= 'USVe'; // this is the token that the following control structure will search for
stringvar array af:= split(f,','); // your text field is split into an array, using the comma as a separator
numbervar u:= ubound(af); // the number of comma separated pieces of info in your field
numbervar i:= 0; stringvar o:= ''; // some variables are initiated
while i < u do
(
i:= i + 1;
if af[i] startswith t
then o:= o + af[i] + chr(10);
);
o
you can substitute the "f" variable for your database field. the results look like this...
USVesselMaterial='Mill'
USVesselInternalWeld='Class I'
USVesselInternalBaffles='Standard'
USVesselInternalBaffles23='Standard'
USVesselInternalBaffles34='Standard'
USVesselInternalBaffles45='Standard'
i hope that this helps,
jamie