การฝึกอบรม
โมดูล
Modify the content of strings using built-in string data type methods in C# - Training
Explore using the built-in string data type methods in C# to modify strings.
เบราว์เซอร์นี้ไม่ได้รับการสนับสนุนอีกต่อไป
อัปเกรดเป็น Microsoft Edge เพื่อใช้ประโยชน์จากคุณลักษณะล่าสุด เช่น การอัปเดตความปลอดภัยและการสนับสนุนด้านเทคนิค
Text.RemoveRange(text as nullable text, offset as number, optional count as nullable number) as nullable text
แสดงสําเนาของค่าข้อความ text
โดยที่อักขระทั้งหมดจากตําแหน่ง offset
ถูกลบออก พารามิเตอร์ที่เลือกได้ count
สามารถใช้เพื่อระบุจํานวนอักขระที่จะนําออกได้ ค่าเริ่มต้นของ count
คือ 1 ค่าตําแหน่งเริ่มต้นที่ 0
เอาอักขระ 1 ออกจากค่าข้อความ "ABEFC" ที่ตําแหน่ง 2
การใช้งาน
Text.RemoveRange("ABEFC", 2)
ผลลัพธ์ของ
"ABFC"
เอาสองอักขระออกจากค่าข้อความ "ABEFC" โดยเริ่มต้นที่ตําแหน่ง 2
การใช้งาน
Text.RemoveRange("ABEFC", 2, 2)
ผลลัพธ์ของ
"ABC"
การฝึกอบรม
โมดูล
Modify the content of strings using built-in string data type methods in C# - Training
Explore using the built-in string data type methods in C# to modify strings.