

Cadet 2nd Class
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2015-07-01
12:29
526 views
Hi,
My data is abcdefgh. I want to take 3th(c) and 4th(d) character.
How can I extract string? Which function should I use in Connect-IT?
Thanks
1 Solution
Accepted Solutions


Fleet Admiral
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2015-07-01
13:19
There are a few ways so check the programmer's reference pdf guide (under Docs folder).
3rd & 4th - Right(Left("abcdefgh",4),2)
3rd - Right(Left("abcdefgh",3),1)
4th - Right(Left("abcdefgh",4),1)
3rd & 4th - Mid("abcdefgh",3,2)
3rd - Mid("abcdefgh",3,1)
4th - Mid("abcdefgh",4,1)
1 Reply


Fleet Admiral
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2015-07-01
13:19
There are a few ways so check the programmer's reference pdf guide (under Docs folder).
3rd & 4th - Right(Left("abcdefgh",4),2)
3rd - Right(Left("abcdefgh",3),1)
4th - Right(Left("abcdefgh",4),1)
3rd & 4th - Mid("abcdefgh",3,2)
3rd - Mid("abcdefgh",3,1)
4th - Mid("abcdefgh",4,1)