Guest User

Untitled

a guest
Feb 21st, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. Summary
  2. Escape Characters
  3. Character to be escaped Escape Sequence Remark
  4. % %% May not always be required in doublequoted strings, just try
  5. ^ ^^ May not always be required in doublequoted strings, but it won't hurt
  6. & ^&
  7. < ^<
  8. > ^>
  9. | ^|
  10. ' ^' Required only in the FOR /F "subject" (i.e. between the parenthesis), unless backq is used
  11. ` ^` Required only in the FOR /F "subject" (i.e. between the parenthesis), if backq is used
  12. , ^, Required only in the FOR /F "subject" (i.e. between the parenthesis), even in doublequoted strings
  13. ; ^;
  14. = ^=
  15. ( ^(
  16. ) ^)
  17. ! ^^! Required only when delayed variable expansion is active
  18. " "" Required only inside the search pattern of FIND
  19. \ \\ Required only inside the regex pattern of FINDSTR
  20. [ \[
  21. ] \]
  22. " \"
  23. . \.
  24. * \*
  25. ? \?
Add Comment
Please, Sign In to add comment