Hello,
CR XI
MSSQL2000 & ORA 9.2
Windows XP SP2
I want to remove all rtf tags from a memo field. I want to standardise the font in my report. The final result will be a string formula with only the text - no rtf code.
I have tried the following formula - but it probably doesn't cover everything:
(replace
(replace
(replace
(replace
(replace
(replace
(replace
(replace
(replace
(replace
({OBJECT.FULL_DESCRIPTION}
,"\rtf1","")
,"\ansi","")
,"\deff0","")
,"\deftab720","")
,"\fonttbl","")
,"{","")
,"}","")
,"\par","")
,"\fnil","")
,"\froman","")
,"\fscript",""))
Someone out there must have devised a way to overwrite rtf text in crystal. Or atleast overwrite the font and size of the rtf tag.
Here are 2 standard rtf texts - but his could change depending on the text saved by the user:
1.)
{\rtf1\ansi\ansicpg1252\deff0\deflang1044{\fonttbl{\f0\froman\fcharset0 Arial;}{\f1\fswiss\fcharset0 Tahoma;}{\f2\fswiss Tahoma;}}{\colortbl ;\red0\green0\blue0;}\viewkind4\uc1\pard\cf1\f0\fs20 My name is APB 123456\par \par Yes thats right, APB 123456\par \cf0\f1\fs17 \f2 \par }
2.)
{\rtf1\ansi\ansicpg1252\deff0\deflang1044{\fonttbl{\f0\fswiss\fcharset0 Tahoma;}{\f1\fswiss Tahoma;}}\viewkind4\uc1\pard\f0\fs17 Blah blah this is some plain old text .......\par \f1 \par }
APB
CR XI
MSSQL2000 & ORA 9.2
Windows XP SP2
I want to remove all rtf tags from a memo field. I want to standardise the font in my report. The final result will be a string formula with only the text - no rtf code.
I have tried the following formula - but it probably doesn't cover everything:
(replace
(replace
(replace
(replace
(replace
(replace
(replace
(replace
(replace
(replace
({OBJECT.FULL_DESCRIPTION}
,"\rtf1","")
,"\ansi","")
,"\deff0","")
,"\deftab720","")
,"\fonttbl","")
,"{","")
,"}","")
,"\par","")
,"\fnil","")
,"\froman","")
,"\fscript",""))
Someone out there must have devised a way to overwrite rtf text in crystal. Or atleast overwrite the font and size of the rtf tag.
Here are 2 standard rtf texts - but his could change depending on the text saved by the user:
1.)
{\rtf1\ansi\ansicpg1252\deff0\deflang1044{\fonttbl{\f0\froman\fcharset0 Arial;}{\f1\fswiss\fcharset0 Tahoma;}{\f2\fswiss Tahoma;}}{\colortbl ;\red0\green0\blue0;}\viewkind4\uc1\pard\cf1\f0\fs20 My name is APB 123456\par \par Yes thats right, APB 123456\par \cf0\f1\fs17 \f2 \par }
2.)
{\rtf1\ansi\ansicpg1252\deff0\deflang1044{\fonttbl{\f0\fswiss\fcharset0 Tahoma;}{\f1\fswiss Tahoma;}}\viewkind4\uc1\pard\f0\fs17 Blah blah this is some plain old text .......\par \f1 \par }
APB