StringContext (original) (raw)
scala.StringContext
See theStringContext companion class
Members list
An exception that is thrown if a string contains a backslash (\
) character that does not start a valid escape sequence.
An exception that is thrown if a string contains a backslash (\
) character that does not start a valid escape sequence.
Value parameters
index
The index of the offending backslash character in str
.
str
The offending string
Attributes
Source
Supertypes
Checks that the length of the given argument args
is one less than the number of parts
supplied to the StringContext
.
Checks that the length of the given argument args
is one less than the number of parts
supplied to the StringContext
.
Attributes
Throws
Source
Linear time glob-matching implementation.
Linear time glob-matching implementation. Adapted from https://research.swtch.com/glob
Value parameters
input
The input you wish to match against
patternChunks
The non-wildcard portions of the input pattern, separated by wildcards
Attributes
Returns
None if there is no match, Some containing the sequence of matched wildcard strings if there is a match
Source
Expands standard Scala escape sequences in a string.
Expands standard Scala escape sequences in a string. Escape sequences are: control: \b
, \t
, \n
, \f
, \r
escape: \\
, \"
, \'
Value parameters
str
A string that may contain escape sequences
Attributes
Returns
The string with all escape sequences expanded.
Source
Expands standard Scala escape sequences in a string.
Expands standard Scala escape sequences in a string. Escape sequences are: control: \b
, \t
, \n
, \f
, \r
escape: \\
, \"
, \'
Value parameters
str
A string that may contain escape sequences
Attributes
Returns
The string with all escape sequences expanded.
Deprecated
[Since version 2.13.0]
use processEscapes
Source
In this article