I want to remove a character from a certain position in a string. Specifically, I want to remove the first character. For example, my string starts with a ":" and I want to remove that only, there are a lot of ":" in the string which shouldn't be removed. I am writing my code in Python
prints
|
|||||||||
|
|
Depending on the structure of the string, you can use
But this would remove all colons at the beginning, i.e. if you have |
|||
|
|
|
This ("How to replace the first occurrence of a regular expression in Python?") should address your problem. |
|||||||||
|
|
Your problem seems unclear. You say you want to remove "a character from a certain position then go on to say you want to remove a particular character. If you only need to remove the first character you would do:
If you want to remove a character at a particular position, you would do:
If you need to remove a particular character, say ':', the first time it is encountered in a string then you would do:
|
|||||
|
|
deleting a char:
it deletes all the chars that are in indexes; you can use it in your case with |
|||
|
|