“Hapus karakter pertama dan terakhir” Kode Jawaban

Hapus karakter pertama dan terakhir dari string javascript

const removeChar = (str) => str.slice(1, -1);
Fylls

Hapus karakter pertama dan terakhir dari string di java

String roles = "[This is an example of list.toString()]";
//Below substring method will remove the first and last character of roles String
roles = roles.substring(1, roles.length()-1);
// here roles will become "This is an example of list.toString()"
System.out.println("New String: "+roles);
Defeated Dormouse

Hapus huruf pertama dan terakhir dari string

// Remove first and last letter of string

fn main() {
let text = "Hello, world";

// remove last letter
let mut text = text.split_at(text.len() - 1);

// remove first letter
text = text.0.split_at(1);

println!("{}", text.1);
}
Mackerel

Hapus karakter pertama dan terakhir

// Your goal is to create a function that removes the first and last characters of a string. You're given one parameter, the original string. You don't have to worry with strings with less than two characters.

function removeChar(str){
  const strLength = str.length
  if(strLength < 2) return str
  
  return str.substr(1, strLength - 2)
};

// With love @kouqhar
kouqhar

Jawaban yang mirip dengan “Hapus karakter pertama dan terakhir”

Pertanyaan yang mirip dengan “Hapus karakter pertama dan terakhir”

Lebih banyak jawaban terkait untuk “Hapus karakter pertama dan terakhir” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya