當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Numpy string rstrip()用法及代碼示例


numpy.core.defchararray.rstrip(arr, chars=None) 是另一個在numpy中執行字符串操作的函數。它返回一個副本,其中刪除了arr中每個元素的尾隨字符。

參數:
arr :str或unicode的數組。
char :[str或unicode,可選]要刪除的字符集。如果省略或“無”,它將刪除空格。 chars參數不是前綴或後綴;我們要剝離的是其值的所有組合。

返回:[ndarray] str或unicode的輸出數組,具體取決於輸入類型。


代碼1:

# Python program explaining 
# numpy.char.rstrip() method  
  
import numpy as geek 
  
# input arrays   
in_arr = geek.array(['Sun', '  Moon  ', 'Star']) 
print ("Input array:", in_arr)  
  
out_arr = geek.char.rstrip(in_arr) 
  
# whitespace removed from arr[1]  
# as we have set chars = None 
print ("Output array:", out_arr) 
輸出:
Input array: ['Sun' ' Moon ' 'Star']
Output array: ['Sun' 'Moon' 'Star']


代碼2:

# Python program explaining 
# numpy.char.rstrip() method  
  
import numpy as geek 
  
# input arrays  
in_arr = geek.array([ 'Geeks', 'For', 'Geeks'] ) 
print ("Input array:", in_arr)  
  
out_arr = geek.char.rstrip(in_arr, chars ='s') 
  
#'s' removed from arr[0] and  
# arr[2] as we have set chars ='s' 
print ("Output array:", out_arr) 
輸出:
Input array: ['Geeks' 'For' 'Geeks']
Output array: ['Geek' 'For' 'Geek']


代碼3:

# Python program explaining 
# numpy.char.rstrip() method  
  
import numpy as geek 
  
# input arrays  
in_arr = geek.array([ 'GeeksG', 'ForG', 'Geeks'] ) 
print ("Input array:", in_arr)  
  
out_arr = geek.char.rstrip(in_arr, chars ='G') 
  
# will strip 'G' from right side 
# from each element(if exists) 
print ("Output array:", out_arr) 
輸出:
Input array: ['GeeksG' 'ForG' 'Geeks']
Output array: ['Geeks' 'For' 'Geeks']


相關用法


注:本文由純淨天空篩選整理自jana_sayantan大神的英文原創作品 numpy string operations | rstrip() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。