如何选择从开头到指定字符的字符串?
如何选择从开头到指定字符的字符串?
例如,在以下新闻标题中...
someString = @“加利福尼亚州洛杉矶 - Apple 宣布了一些事情,股票价格发生变化。”
如何仅选择 加利福尼亚州洛杉矶 -
成一个单独的字符串? (我想将我的选择基于 -
(“破折号”)字符之前的所有内容。
编辑:
假设我的标题如下所示:
someString = @"Los加利福尼亚州洛杉矶 - Apple 宣布了一些事情 - 股票价格发生变化。”
如何防止我的位置字符串看起来像这样:加利福尼亚州洛杉矶 - Apple 宣布了一些事情
?
编辑:
我的错误,我删除了第一个破折号,然后重新输入了我的错误,发布的答案有效。
How can I select a string from the beginning until a specified character?
For example, in the following a news headline...
someString = @"Los Angeles, California - Apple announces something, stock prices change."
How do I select just Los Angeles, California -
into a separate string? (I want to base my selection on everything before the -
("dash") character.
EDIT:
Say my headline looks like this:
someString = @"Los Angeles, California - Apple announces something - stock prices change."
How do I prevent my location string from looking like this: Los Angeles, California - Apple announces something
?
Edit:
My mistake, I was removing the first dash and then reprising the string. My mistake the posted answer works.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
someString
中没有破折号,这会将substring
设置为nil
。This sets the
substring
tonil
if there's no dash in thesomeString
.