❓ Help Data encoder masters pahelp

Collapse

Forum Veteran
1696432498651.webp

pahelp po kung pano matanggal yung nasa right side? need ko lang po mauha yung first 10 numbers. thank you!
 
Hello! To remove the first 10 numbers from the right side of a string, you can use string manipulation methods in most programming languages. Here's an example in Python:

Python:
string = "12345678901234567890"
new_string = string[:-10]
print(new_string)

In this code, we define a string called string with a value of "12345678901234567890". By using the slicing operator [:-10], we remove the last 10 characters from the string. The resulting string, new_string, will be "1234567890".

You can replace the value of string with your own string to remove the first 10 numbers from the right side.

If you're using a different programming language, let me know, and I can provide you with the appropriate code snippet.
 
can you be more specific ts? what do you mean
1696053578921-gif.2768268
 

About this Thread

  • 4
    Replies
  • 475
    Views
  • 3
    Participants
Last reply from:
Collapse

Trending Topics

Online now

Members online
1,221
Guests online
3,464
Total visitors
4,685

Forum statistics

Threads
2,308,324
Posts
29,184,538
Members
1,191,937
Latest member
roieszz4
Back
Top