I used a method that granted me a file path and I want to get only the file name.
so I try to use string.split('\').
however, it seems like the computer waits for some another closing and does not let me contain this char as a separator.
it expects either ',' or ';' depends on the content.
quick fixing it with constant doesn't solve it as the problem moves recursively to the constant.
https://www.dropbox.com/s/95oon2i40mohb3k/split%20by%20slash.PNG?dl=0
any workaround?
edit: thanks for all the helpers, '\\' did do the trick :)