10. Search Settings include choosing case sensitivity, scope, and whether or not to interpret the search string as a regular expression or as a literalstring.
搜索设置包括选择是否区分大小写、将搜索字符串作为正则表达式还是文本字符串解释等。
来自互联网
11. Concatenation is the process to sequentially join multiple pieces of data, usually literal strings with non-string-literal data (most commonly, variables or other literals).
12. After the refactoring, all USES of that number or stringliteral in the class refer to that field, instead of the number or string literal itself.
在重构后,所有对这个类中的数字或字符串文字的使用都将指向该字段,而不是指向数字或字符串文字本身。
来自互联网
13. Comparing a variable having an atomic value (number, Boolean, or string) to another such variable or a literal atomic value, and expecting the type of one to be cast automatically to the other type.
14. This way, you can modify the number or stringliteral in just one place (the value of the field), instead of doing a search and replace throughout your code.
18. The printk function relies on a feature of the C language called stringliteral concatenation.
printk 是基于C语言中一个名为字符串逐字连接 的特性。
来自互联网
19. To use, select the number or stringliteral in the editor, press Ctrl + 1 and select Extract to Constant.
要使用这个重构,请选择编辑器中的数字或字符串文字,然后按下Ctrl +1并选择Extract to Constant。
来自互联网
20. A URI Template is a string value that includes a mixture of literal character sequences and specialized tokens that, when processed with a set of input values, yields a URI. For example.
URI模板是一个字符串值,由文字字符序列和特殊的标记组成,可以将一系列输入值转换为一个URI。
来自互联网
21. Conversely, use the encode method of a string object if you want a bytes literal from that string.
相反,如果想要从该字符串得到bytesliteral表示,可以使用字符串对象的encode方法。
来自互联网
22. The format (picture) string in format-number() has digit markers with "passive" characters before or after, which are intended to be literal characters in the result
23. We use the STR function to parse the multi-line string literal.
我们使用了str函数来解析这个多行字符串。
来自互联网
24. Hence the final result would be a node-set containing two value elements named — USPrice, where both hold a numeric value in the form of a string literal.
25. For example, we could search for concat functions with all string-literal values, then concatenate the arguments into a string value as in Figure 8.
26. Each table is a literal representation of the structures shown in Tables 2 through 9, delivered as a two-dimensional matrix of String .
每个表都是表2至表9中所示的结构的文本表示,是作为二维矩阵String提供的。
来自互联网
27. Your idea of formatting a stringliteral is right. YET this formatting have to be done via prepared statement.
格式化字符串文字的你的想法是正确的。然而这格式必须通过事先准备好的声明中。
来自互联网
28. A stringliteral represents a string constant obtained from concatenating a sequence of characters. There are two forms: raw string literals and interpreted string literals.
字符串字面值表示由字符序列构成的字符串常量。有两种格式:原始字符串字面值和解释字符串字面值。
来自互联网
29. The parameter value can be any valid template expression such as a stringliteral or a component property.
参数值可以是任何有效的模板表达式,比如字符串字面量或组件的属性。
来自互联网
30. In Listing 15, we revisit our problem of evaluating a concat function by creating a match function (to find concat nodes with string-literal arguments) and an editor function (to evaluate the concat).