Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Vasiliy_Beshentsev
Creator III
Creator III

Ho to use right delimiter?

Hello!

If i want to use comma as delimiter - it's no problem: SubField(Field1, ',' ,14) as Result15

If i want to use single quota as delimiter - like this:  SubField(Field1,'''',14) as Result15

How to write correct single quota in script?

1 Solution

Accepted Solutions
sunny_talwar

May be try this:

SubField(Field1, Chr(39),14) as Result15

View solution in original post

3 Replies
sunny_talwar

May be try this:

SubField(Field1, Chr(39),14) as Result15

Vasiliy_Beshentsev
Creator III
Creator III
Author

Thx a lot!

sunny_talwar

No problem