Relief from backslash irritation in R for Windows

前端 未结 9 2362
没有蜡笔的小新
没有蜡笔的小新 2021-02-10 10:41

Early in my R life I discovered the pain of R and windows being on different pages when it came to the separator between directories and subdirectories. Eventhough I know about

9条回答
  •  走了就别回头了
    2021-02-10 11:26

    This is AutoIt code which does the same thing (replaces \ with /).

    Local $text1 = ClipGet()
    $text2=StringReplace($text1,"\","/")
    ClipPut($text2)
    

提交回复
热议问题