Announcement

Collapse
No announcement yet.

string replace of \ Backslash

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • string replace of \ Backslash

    I tried to use this formula, but it didn't work.



    1- title = string\replace(title, "", "-");
    2 - title = string\replace(title, '\', '-');
    3- title = string\replace(title, "\\\\/", "-");


    How i can replace \ Backslash with -


  • #2
    We have rules in bug reports category. It's a sticky post saying to post only after reading rules.

    Escaping is not supported currently.

    Workaround:

    Code:
    $backslash = string\replace("\dummy", "dummy", "");
    
    $test = string\replace($test, $backslash, "-");​

    Comment


    • #3
      Thank you in the first

      I will take care of that next time

      Comment

      Working...
      X