WOLFRAM

StringReplacePart["string","snew",{m,n}]

replaces the characters at positions m through n in "string" by "snew".

StringReplacePart["string","snew",{{m1,n1},{m2,n2},}]

inserts copies of "snew" at several positions.

StringReplacePart["string",{"snew1","snew2",},{{m1,n1},{m2,n2},}]

replaces characters at positions mi through ni in "string" by "snewi".

StringReplacePart["snew",{m,n}]

represents an operator form of StringReplacePart that can be applied to an expression.

Details

  • StringReplacePart uses position specifications in the form returned by StringPosition. »
  • When a list of "snewi" is given, its length must be the same as the length of the list of positions. »
  • When multiple positions are given, all refer to the original "string", before any replacements have been done.
  • StringReplacePart[s,"",] can be used to delete substrings. »
  • StringReplacePart[new,part][old] is equivalent to StringReplacePart[old,new,part].
  • StringReplacePart[BioSequence["type","seq"],"snew",part] 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 StringReplacePart[bioseq,"snew",{m,n}] replaces the wrapped-around sequence starting at m and ending at n.

Examples

open allclose all

Basic Examples  (3)Summary of the most common use cases

Replace characters 2 through 5 with a new string:

Out[1]=1

Replace several sequences of characters with a new string:

Out[1]=1

Use the operator form of StringReplacePart:

Out[1]=1

Scope  (5)Survey of the scope of standard use cases

Negative positions count from the end:

Out[1]=1

Replace two sequences of characters with two new strings:

Out[1]=1

Use the operator form to replace two sequences of characters with two new strings:

Out[1]=1

Replace a codon in a DNA sequence:

Out[1]=1

Undertake a wrap-around replace on a biomolecular sequence:

Out[1]=1

Applications  (1)Sample problems that can be solved with this function

Simulating a multiway system [more info]:

The evolution of a multiway system:

Out[4]=4

Properties & Relations  (3)Properties of the function, and connections to other functions

StringReplacePart can use the output from StringPosition:

Out[1]=1
Out[2]=2

This is equivalent to StringReplace:

Out[3]=3

Replacing with an empty string is equivalent to StringDrop:

Out[1]=1
Out[2]=2

StringReplacePart can drop several sequences of characters at a time:

Out[3]=3

Use position {n,n-1} to insert at position n, without overwriting anything:

Out[1]=1

StringInsert can do the same:

Out[2]=2

Possible Issues  (1)Common pitfalls and unexpected behavior

The position specifications are not allowed to overlap:

Out[1]=1
Wolfram Research (1996), StringReplacePart, Wolfram Language function, https://reference.wolfram.com/language/ref/StringReplacePart.html (updated 2020).
Wolfram Research (1996), StringReplacePart, Wolfram Language function, https://reference.wolfram.com/language/ref/StringReplacePart.html (updated 2020).

Text

Wolfram Research (1996), StringReplacePart, Wolfram Language function, https://reference.wolfram.com/language/ref/StringReplacePart.html (updated 2020).

Wolfram Research (1996), StringReplacePart, Wolfram Language function, https://reference.wolfram.com/language/ref/StringReplacePart.html (updated 2020).

CMS

Wolfram Language. 1996. "StringReplacePart." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2020. https://reference.wolfram.com/language/ref/StringReplacePart.html.

Wolfram Language. 1996. "StringReplacePart." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2020. https://reference.wolfram.com/language/ref/StringReplacePart.html.

APA

Wolfram Language. (1996). StringReplacePart. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/StringReplacePart.html

Wolfram Language. (1996). StringReplacePart. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/StringReplacePart.html

BibTeX

@misc{reference.wolfram_2025_stringreplacepart, author="Wolfram Research", title="{StringReplacePart}", year="2020", howpublished="\url{https://reference.wolfram.com/language/ref/StringReplacePart.html}", note=[Accessed: 06-April-2025 ]}

@misc{reference.wolfram_2025_stringreplacepart, author="Wolfram Research", title="{StringReplacePart}", year="2020", howpublished="\url{https://reference.wolfram.com/language/ref/StringReplacePart.html}", note=[Accessed: 06-April-2025 ]}

BibLaTeX

@online{reference.wolfram_2025_stringreplacepart, organization={Wolfram Research}, title={StringReplacePart}, year={2020}, url={https://reference.wolfram.com/language/ref/StringReplacePart.html}, note=[Accessed: 06-April-2025 ]}

@online{reference.wolfram_2025_stringreplacepart, organization={Wolfram Research}, title={StringReplacePart}, year={2020}, url={https://reference.wolfram.com/language/ref/StringReplacePart.html}, note=[Accessed: 06-April-2025 ]}