You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
procremovePrefix*(s: varstring, chars: set[char] =Newlines) {.
rtl, extern: "nsuRemovePrefixCharSet".} =## Removes all characters from `chars` from the start of the string `s`## (in-place).##
runnableExamples:
var userInput ="\r\n*~Hello World!"
runnableExamples:
\r
renders as\c
shows as:
/Users/timothee/.cache/nim/strutils_d/runnableExamples/strutils_examples13.nim
likewise in rendered html page, but that's a consequence of above: it renders as
var userInput = "\c\n*~Hello World!"
The text was updated successfully, but these errors were encountered: