如何将字符串的某个部分存储到变量中?

Posted

技术标签:

【中文标题】如何将字符串的某个部分存储到变量中?【英文标题】:How do you store a certain part of a string into a variable? 【发布时间】:2018-12-20 15:41:25 【问题描述】:

如何将字符串的某一部分存储到变量中?

例如:

x = myString // - But store the 9th character into a variable

【问题讨论】:

使用有据可查的字符串函数来获取第 9 个字符。 docs.yoyogames.com/source/dadiospice/002_reference/strings/… 【参考方案1】:

试试这个,

x = string_char_at(myString , 9);

【讨论】:

【参考方案2】:

这会从字符串中获取单个字符:

var x = string_char_at("This is my string", 4); //X == "s"

你可以使用string_copy函数来复制字符串的一部分;

var x = string_copy("This is my string", 8, 2); //X == "my"

【讨论】:

这个问题很简短,很中肯——答案很简短,很中肯。此人正在寻找功能。答案是功能。请在投票删除之前阅读问题。

以上是关于如何将字符串的某个部分存储到变量中?的主要内容,如果未能解决你的问题,请参考以下文章

如何将 Python 字符串变量添加到 Python 中 SQL 字符串变量的一部分?

提取用逗号分隔的字符串部分

bash:如何将字符串添加到 stderr 行并按确切顺序组合 stdout 和 stderr 并存储在 bash 中的一个变量中?

c++ 获取文件的一部分

如何将 printStackTrace 存储到字符串中[重复]

字符串到 Python 语句?