由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - How to convert string to string array (or vector) (转载)
相关主题
cc150 string基础疑惑:1.5 and 1.8这里牛人多,给大家来个算法的问题
这个拷贝构造函数有什么问题?求解比硬币找零稍难的一题
请问关于overloading << (转载)请问二叉搜索树如何找到两个点的最近祖先?
IBM高级软件工程师的示例代码,大家看看有多少个bug?keep group of values of SQL procedure in one table (转载)
Amazon最近电面面经面经
Facebook Phone Screengenerate unique integer ID from columns in SQL table
请问C#中如何update hashtable中的value? (转载)Error of SQL query on IBM netezza SQL database from Aginity workbench
下午的google就只code完一题,没来得及做第二题一道面试题请教
相关话题的讨论汇总
话题: string话题: convert话题: array话题: value2
进入JobHunting版参与讨论
1 (共1页)
c**********e
发帖数: 2007
1
【 以下文字转载自 Programming 讨论区 】
发信人: careerchange (Stupid), 信区: Programming
标 题: How to convert string to string array (or vector)
发信站: BBS 未名空间站 (Mon Sep 13 19:18:21 2010, 美东)
It looks that`in Java, there is a function Split which convert a string to a
string array. I wonder if we could do the same in C++. How to do the
conversion?
string MyString = "value1;value2;value3;value4;"
string[] MyStringArray = MyString.Split(';');
MyStringArray[0] (would give value1)
MyStringArray[1] (would give value2)
h**k
发帖数: 3368
2
MyStringArray[0] = MyString.substring(0, MyString.find(';') );
MyString.erase(0, MyString.find( ';' ) );

a

【在 c**********e 的大作中提到】
: 【 以下文字转载自 Programming 讨论区 】
: 发信人: careerchange (Stupid), 信区: Programming
: 标 题: How to convert string to string array (or vector)
: 发信站: BBS 未名空间站 (Mon Sep 13 19:18:21 2010, 美东)
: It looks that`in Java, there is a function Split which convert a string to a
: string array. I wonder if we could do the same in C++. How to do the
: conversion?
: string MyString = "value1;value2;value3;value4;"
: string[] MyStringArray = MyString.Split(';');
: MyStringArray[0] (would give value1)

d**e
发帖数: 6098
3
google string tokenizer c++ 应该有收获

a

【在 c**********e 的大作中提到】
: 【 以下文字转载自 Programming 讨论区 】
: 发信人: careerchange (Stupid), 信区: Programming
: 标 题: How to convert string to string array (or vector)
: 发信站: BBS 未名空间站 (Mon Sep 13 19:18:21 2010, 美东)
: It looks that`in Java, there is a function Split which convert a string to a
: string array. I wonder if we could do the same in C++. How to do the
: conversion?
: string MyString = "value1;value2;value3;value4;"
: string[] MyStringArray = MyString.Split(';');
: MyStringArray[0] (would give value1)

1 (共1页)
进入JobHunting版参与讨论
相关主题
一道面试题请教Amazon最近电面面经
How to convert string to string array (or vector)Facebook Phone Screen
c# question: char_array.ToString() is not working ?请问C#中如何update hashtable中的value? (转载)
能否让函数返回一个用于赋值的引用下午的google就只code完一题,没来得及做第二题
cc150 string基础疑惑:1.5 and 1.8这里牛人多,给大家来个算法的问题
这个拷贝构造函数有什么问题?求解比硬币找零稍难的一题
请问关于overloading << (转载)请问二叉搜索树如何找到两个点的最近祖先?
IBM高级软件工程师的示例代码,大家看看有多少个bug?keep group of values of SQL procedure in one table (转载)
相关话题的讨论汇总
话题: string话题: convert话题: array话题: value2