Message 1 of 2
Capturing a portion of a varible
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi
I am looking to grab a portion of a variable string
My Exit Hole Dia is 0.065000 (Model Value)
I only want to use 0.065000. I can easily do this in VBA
but Inventor is another Story
Can anyone
EHDLT should return me 0.065
EHD should return me 065
'EXIT HOLE DIA
HIGH_EXIT_HOLE_DIA = 0.065000
EHDLT=Left(HIGH_EXIT_HOLE_DIA,5) EHD=Right(EHDLT,3)
Thanks