Profile picture for user gimbert

I try to call a specific report for each object application type in the database.

The report must generate a PDF file with a specific name.

I wrote a function to remplace special characters.

function FormatName(stringToTrim) {

    var st = ""

    st = stringToTrim;

    st = st.replace(/\*/g, "");      // delete *

    st = st.replace(/\[/g, "");      // delete [

    st = st.replace(/\]/g, "");      // delete ]

    st = st.replace(/\</g, "");      // delete <

    st = st.replace(/\>/g, "");      // delete >

    st = st.replace(/\=/g, "");      // delete =

    st = st.replace(/\+/g, "");      // delete +

    st = st.replace(/\'/g, "");      // delete '

    st = st.replace(/\"/g, "");      // delete "

    st = st.replace(/\\/g, "");      // delete \

    st = st.replace(/\//g, "");      // delete /

    st = st.replace(/\,/g, "");      // delete ,

    st = st.replace(/\./g, "");      // delete .

    st = st.replace(/\:/g, "");      // delete :

    st = st.replace(/\;/g, "");      // delete ;

    st = st.replace(/^\s+|\s+$/g,""); // delete spaces at begin and end

    st = st.replace(/ /g, "_");      // replace intra spaces 

   

 return st;

}

The function works when i call it with Dialogs.MsgBox (FormatName("ABD +GHI/: JK "));

but i have an error when i call it with an object name ( TheObject[0].Name(nLanguage) )

Ambigus Javascript construction :  string replace (char,char) or string replace(CharSequence, CharSequence)

Thank's for help

 

Featured achievement

Rookie
Say hello to the ARIS Community! Personalize your community experience by following forums or tags, liking a post or uploading a profile picture.
Recent Unlocks

Leaderboard

|
icon-arrow-down icon-arrow-cerulean-left icon-arrow-cerulean-right icon-arrow-down icon-arrow-left icon-arrow-right icon-arrow icon-back icon-close icon-comments icon-correct-answer icon-tick icon-download icon-facebook icon-flag icon-google-plus icon-hamburger icon-in icon-info icon-instagram icon-login-true icon-login icon-mail-notification icon-mail icon-mortarboard icon-newsletter icon-notification icon-pinterest icon-plus icon-rss icon-search icon-share icon-shield icon-snapchat icon-star icon-tutorials icon-twitter icon-universities icon-videos icon-views icon-whatsapp icon-xing icon-youtube icon-jobs icon-heart icon-heart2 aris-express bpm-glossary help-intro help-design Process_Mining_Icon help-publishing help-administration help-dashboarding help-archive help-risk icon-knowledge icon-question icon-events icon-message icon-more icon-pencil forum-icon icon-lock