Assign double quote character to a string parameter
Nov 17, 2014
07:12 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Nov 17, 2014
07:12 PM
Assign double quote character to a string parameter
Does anyone know of a way to assign a double quote to a string parameter via relations? I can manually create a new parameter and add a double quote to it, but not programmatically.
My current workaround is to manually create a parameter with a value of " and then use this parameter any time I need a double quote character.
DBL_QUOTE = " (manually created - doesn't work in a relation)
STRING_PARAM = DBL_QUOTE + "BLAH BLAH BLAH" + DBL_QUOTE
Yes, I NEED the double quote in the final string. The ASCII value (34) is critical.
Thanks!
Tom U.
My current workaround is to manually create a parameter with a value of " and then use this parameter any time I need a double quote character.
DBL_QUOTE = " (manually created - doesn't work in a relation)
STRING_PARAM = DBL_QUOTE + "BLAH BLAH BLAH" + DBL_QUOTE
Yes, I NEED the double quote in the final string. The ASCII value (34) is critical.
Thanks!
Tom U.
2 REPLIES 2
Nov 17, 2014
10:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Nov 17, 2014
10:05 PM
Tom,
Try the following. ...
Parameter A = " + parameter B + "
Hope this helps
Don Anderson
Nov 17, 2014
10:14 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Nov 17, 2014
10:14 PM
Wow, why didn’t I think of that. Works great! Thanks!
Tom U.
Tom U.
