a backslash
反斜杠键
2026-05-05 11:39 浏览次数 25
反斜杠键
if a backslash character is followed by any other character, the backslash is not removed.
如果一个反斜杠后跟随其他任何字符,反斜杠不被移除。
a control symbol consists of a backslash followed by a single, non alphabetic character.
一个控制符号由一个反斜杠以及紧跟着它的一个简单的非字母的字符。
a percent sign (%) is translated to a newline, so if you want a % or any other special character, precede it with a backslash (\).
百分号(%)将转换为空行,所以如果要使用 %或其他任何特殊字符,就要在前面加上反斜线(\)。
if a parameter「s value must extend over two or more lines, all lines except the last must end in a backslash (\), just like a unix shell.
如果一个参数的值必须扩展到两行或更多行,除最后一行的所有行必须以反斜杠(\)结束,就像一个unixshell。
if editor is set to vi, you type part of name, and then click escape followed by a backslash (\) character.
如果editor设置为vi,那么您键入部分名称,然后按esc 键,后跟反斜杠 (\)字符。
in windows, each inner double quotation mark must be cancelled with a backslash that is within the brace surrounded by double quotation marks in the json form.
在windows 中,每一个内部双引号都必须由一个斜划线取消,该斜划线由json格式的双引号所包围。
in practice, the lines separated by a backslash must appear on a single line.
在实际文件中,由反斜杠分隔的行必须出现在单一行上。
to avoid that the quotation marks are removed by the command line interpreter, they are masked with a backslash (\).
为了避免命令行解释器删除引号,应该加上一个反斜杠 (\)。
the character sequence \ represents a backslash escaped single quote 」 in mysql, but in db2, a single quote must be escaped by adding another single quote 「' (double single quotes).
在mysql中,字符序列 \表示一个反斜杠转移单引号」,但在db2 中,单引号必须要再加一个单引号来实现转义「'(即两个单引号)。
the directory must exist and end with a slash on unix or linux and a backslash on windows; for example, 」d:\temp\myschema\「.
这个目录必须存在,在unix或linux 上以斜线结尾,在windows上以反斜线结尾;例如」d:\temp\myschema\「。
note that the 「&」 used as part of the data has been escaped using a backslash (\).
注意,用作数据的一部分的 「&」已经使用一个反斜杠(\)进行转义。
for example, it」s well known that unix and linux systems use the virgule ( /) character as a directory separator, while windows uses a backslash (\) for similar purpose.
例如,众所周知,unix和linux系统使用正斜杠 ( /)字符作为目录分隔符,而windows将反斜杠 (\)字符用于类似的用途。
if you are looking for a backslash , you need to escape that also.
如果您正在寻找一个反斜杠,你需要逃跑也。
a dollar sign ($) may be included as a literal in the replacement string by preceding it with a backslash (\$).
通过在前面加上一个反斜杠 (\$),美元符号 ($)可以作为一个文字被包括在替换字符串中。
you can also simply enclose the entire variable value in single quotation marks (「) as long as you precede any actual single quotation marks in the variable with a backslash (\」).
您还可以简单地将整个字符串放到单引号(「)中,但是需要在变量中真正的单引号字符前面加上一个反斜线(\」)。
you can include comments, which start with a hash character (#); continue long lines by ending them with a backslash (\).
可以包含注释,注释以散列符 (#)开头;通过在换行处加上反斜杠 (\),可以把长的行分为多行。
characters are escaped with a backslash automatically.
字元都会被自动加上一个反斜线进行转义。
gets a backslash character that can be used in a directory string.
获取可在目录字符串中使用的反斜杠字符。
as a side note, observe that we use a backslash to extend the xtics command over more than one line of input.
作为边注,注意我们使用反斜杠将xtics命令扩展成多个输入行。
non-printable characters are shown in hexadecimal format, which is a backslash followed by two hexadecimal characters.
非输出字符用十六进制格式显示,其是后跟两个十六进制字符的反斜线。
to match any special character, put a backslash in front of it. for example, \? matches the question mark. to match a backslash, use \\.
要匹配任何指定字符,就在它前面放置一个反斜杠。比如,\?匹配问号。要匹配一个反斜杠,使用\\ 。