StringTake
StringTake["string",n]
gives a string containing the first n characters in "string".
StringTake["string",-n]
gives the last n characters in "string".
StringTake["string",{n}]
gives the n character in "string".
StringTake["string",{m,n}]
gives characters m through n in "string".
StringTake["string",{spec1,spec2,…}]
gives a list of the substrings specified by the speci.
StringTake[{s1,s2,…},spec]
gives the list of results for each of the si.
Details
- StringTake["string",UpTo[n]] gives n characters, or as many as are available.
- StringTake["string",{m,n,s}] gives characters m through n in steps of s.
- StringTake uses the standard Wolfram Language sequence specification.
- StringTake[BioSequence["type","seq"],spec] will apply the operation to the string "seq", yielding a BioSequence result.
- Given a circular BioSequence and a starting position greater than the ending position, i.e. m>n, then StringTake[bioseq,{m,n}] takes the wrapped-around sequence starting at m and ending at n.
Examples
open allclose allBasic Examples (3)
Take the first 6 characters in a string:
Use InputForm to show quotes:
Scope (7)
Take the last 2 characters from several strings:
StringTake works with special characters:
Take the first 4 characters if possible, else as many as are available:
Properties & Relations (3)
Newline (\n) counts as a single character:
StringTake can effectively do "part" extraction in strings:
StringTake works like applying Take to the list of characters:
Possible Issues (2)
Taking between positions 1 and 0 gives a zero-length string:
StringTake operates on the raw characters in a string:
Text
Wolfram Research (1991), StringTake, Wolfram Language function, https://reference.wolfram.com/language/ref/StringTake.html (updated 2020).
CMS
Wolfram Language. 1991. "StringTake." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2020. https://reference.wolfram.com/language/ref/StringTake.html.
APA
Wolfram Language. (1991). StringTake. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/StringTake.html