how to remove first special character from string

user3030365

I have values seperated by pipes in a database. But the issue is that I am appending | at every entry.

For Example:

|275634|374645|24354|

How can I remove the first pipe from the whole string not all the pipes.

Once inserted I don't need to check for the next time when it updates.

If I use substring(1) then it will remove the first character every time,

Please suggest a fix?

Mdhar9e

you can use substring(index) method where ever you want to remove the perticular special character from the String: like

String str2 = "|275634|374645|24354|";
 str2 = str2.substring(1);
System.out.println(str2);

you can see the output as 275634|374645|24354|

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Remove � Special Character from String

From Dev

Remove � Special Character from String

From Java

how to remove special character from the beginning and end of a string in c

From Dev

How to remove a specific special character from a string along with all Alphabets

From Dev

how to remove special character "," from a string using perl

From Dev

How can I remove the special character words from a string?

From Dev

Remove first character from a string

From Dev

how to remove first and last character of a string if it is special character using regex in python

From Dev

Python / Remove special character from string

From Dev

remove all special character from string java

From Dev

remove all special character from string java

From Dev

Remove special character tag from my string

From Dev

How to remove a specific character from a string, only when it is the first or last character in the string.

From Dev

How to remove a specific character from a string, only when it is the first or last character in the string.

From Dev

R remove first character from string

From Dev

Remove first character from a string if it is 0

From Dev

Remove first character from string Django template

From Dev

Remove first character from string Django template

From Dev

How to remove a character from a string

From Java

How to remove the first and the last character of a string

From Dev

How to remove first and last character of a string in Rust?

From Dev

remove first character in string

From Dev

Remove special character from string only if is not inside word

From Dev

PHP remove special character from string and leave some

From Dev

Regex remove a special and duplicated character from the string in javascript?

From Dev

How to split strings by only the first special character that's within the string?

From Dev

how to remove special char-set from string except the first char

From Dev

How to remove characters and special notations from string

From Dev

How to remove a special string from a file?

Related Related

  1. 1

    Remove � Special Character from String

  2. 2

    Remove � Special Character from String

  3. 3

    how to remove special character from the beginning and end of a string in c

  4. 4

    How to remove a specific special character from a string along with all Alphabets

  5. 5

    how to remove special character "," from a string using perl

  6. 6

    How can I remove the special character words from a string?

  7. 7

    Remove first character from a string

  8. 8

    how to remove first and last character of a string if it is special character using regex in python

  9. 9

    Python / Remove special character from string

  10. 10

    remove all special character from string java

  11. 11

    remove all special character from string java

  12. 12

    Remove special character tag from my string

  13. 13

    How to remove a specific character from a string, only when it is the first or last character in the string.

  14. 14

    How to remove a specific character from a string, only when it is the first or last character in the string.

  15. 15

    R remove first character from string

  16. 16

    Remove first character from a string if it is 0

  17. 17

    Remove first character from string Django template

  18. 18

    Remove first character from string Django template

  19. 19

    How to remove a character from a string

  20. 20

    How to remove the first and the last character of a string

  21. 21

    How to remove first and last character of a string in Rust?

  22. 22

    remove first character in string

  23. 23

    Remove special character from string only if is not inside word

  24. 24

    PHP remove special character from string and leave some

  25. 25

    Regex remove a special and duplicated character from the string in javascript?

  26. 26

    How to split strings by only the first special character that's within the string?

  27. 27

    how to remove special char-set from string except the first char

  28. 28

    How to remove characters and special notations from string

  29. 29

    How to remove a special string from a file?

HotTag

Archive