getRange 函数

语法

  • string getRange(inputString, leftMatchString, rightMatchString)

参数

  1. inputString - 字符串
  2. leftMatchString - 字符串
  3. rightMatchString - 字符串

返回值

leftMatchString 末尾和 rightMatchString 之间提取 inputString

说明

getRange 函数用于在 leftMatchString 末尾和 rightMatchString 开头之间提取 inputString

注:

重叠 left/rightMatchStrings 会返回空字符串(请参阅示例)。

相关内容

示例

getRange("rule your city with cityengine","y","city")
# result = "our city with "
getRange("myTexture.hasName.001.jpg","hasName.",".jpg")
# result = "001"
getRange("myTexture.hasName.001.jpg",".",".")
# result = "hasName.001"
getRange("CityEngine","CityEn","tyEngine")
# result = ""

在本主题中