Salve
ho il seguente problema, vorrei inserire in una textarea un testo scritto come di seguito riportato(il testo delimitato dagli asterischi)
Lo richiamo e lo passo dentro una funzione che mi sostituisce gli accapi e gli spazi ma la formattazione viene sballata uguale.
Esiste un modo per farlo
Grazie anticipatamente
![]()
************************************************** ***
Alt/larg
erterterttt 987/789
ertert 654/789
ertererter 987/987
ert 658/987
er 654
tertert
ertertert
ertertert
************************************************** ****
questa e la funzione di cui sopra
FUNCTION toHTML_CRLF(str)
strTmp = str
if len(strTmp) > 0 then
stringaFormat = replace(strTmp, " ", "")
stringaFormat = replace(stringaFormat, CHR(10), "
")
toHTML_CRLF = stringaFormat
end if
END FUNCTION