Answers for "how to insert in a string"

5

insert string in string java

String newString = originalString.substring(0, index + 1) 
                           + stringToBeInserted 
                           + originalString.substring(index + 1);
Posted by: Guest on August-20-2020
-1

insert into string python

>>> line = 'Kong Panda'
>>> index = line.find('Panda')
>>> output_line = line[:index] + 'Fu ' + line[index:]
>>> output_line
'Kong Fu Panda'
Posted by: Guest on July-24-2020

Code answers related to "how to insert in a string"

Python Answers by Framework

Browse Popular Code Answers by Language