• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 16:52
CET 21:52
KST 05:52
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
Weekly Cups (March 9-15): herO, Clem, ByuN win02026 KungFu Cup Announcement5BGE Stara Zagora 2026 cancelled12Blizzard Classic Cup - Tastosis announced as captains17Weekly Cups (March 2-8): ByuN overcomes PvT block4
StarCraft 2
General
Potential Updates Coming to the SC2 CN Server Blizzard Classic Cup - Tastosis announced as captains Weekly Cups (March 9-15): herO, Clem, ByuN win GSL CK - New online series BGE Stara Zagora 2026 cancelled
Tourneys
2026 KungFu Cup Announcement [GSL CK] #2: Team Classic vs. Team Solar [GSL CK] #1: Team Maru vs. Team herO RSL Season 4 announced for March-April PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar)
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 517 Distant Threat Mutation # 516 Specter of Death Mutation # 515 Together Forever
Brood War
General
ASL21 General Discussion BGH Auto Balance -> http://bghmmr.eu/ Gypsy to Korea BSL 22 Map Contest — Submissions OPEN to March 10 Are you ready for ASL 21? Hype VIDEO
Tourneys
ASL Season 21 Qualifiers March 7-8 [Megathread] Daily Proleagues [BSL22] Open Qualifiers & Ladder Tours IPSL Spring 2026 is here!
Strategy
Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Zealot bombing is no longer popular?
Other Games
General Games
Stormgate/Frost Giant Megathread Dawn of War IV Path of Exile Nintendo Switch Thread PC Games Sales Thread
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Mexico's Drug War Russo-Ukrainian War Thread NASA and the Private Sector
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! [Req][Books] Good Fantasy/SciFi books
Sports
2024 - 2026 Football Thread Tokyo Olympics 2021 Thread Formula 1 Discussion General nutrition recommendations Cricket [SPORT]
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Funny Nicknames
LUCKY_NOOB
Money Laundering In Video Ga…
TrAiDoS
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 4194 users

[C++] Using std::string as a Function Parameter?

Blogs > Revabug
Post a Reply
1 2 Next All
Revabug
Profile Blog Joined June 2009
United Kingdom147 Posts
Last Edited: 2009-07-20 22:41:01
July 20 2009 22:33 GMT
#1
Okay so I've just started to learn C++..

After messing around with std::stings for a while I came up with the abstract idea of creating a function that returned the length of the string (not including whitespace)

Here's what I came up with:
+ Show Spoiler +

int Characters(string strString)
{
int nLength = 0;
for (int nChar = 0; nChar < strString.Length(); nChar++)
{
if (strString[nChar] != ' ')
nLength++;
}
return nLength;
}


However, of course this doesn't compile as std::string isn't a valid function parameter. So I ask, how could I get this to work? I've googled and check various tutorial sites but I haven't found anything on this.



Archaic
Profile Blog Joined March 2008
United States4024 Posts
July 20 2009 22:38 GMT
#2
I'm not a C++ programmer, but do you have to close the parentheses in the if statement? Also, should the for statement be nChar < strString.Length()? I don't know what >> means, but I'm just guessing it is greater than.
Revabug
Profile Blog Joined June 2009
United Kingdom147 Posts
Last Edited: 2009-07-20 22:41:31
July 20 2009 22:40 GMT
#3
Yeah I had to type it out cause it wouldn't copy for some reason so there's some random mistakes but the actual code is fine (well, apart from it doesn't work :X)
micronesia
Profile Blog Joined July 2006
United States24757 Posts
July 20 2009 22:42 GMT
#4
Wait, couldn't you just return strString.length()? What exactly is going on lol.

When I did c++ I always used the AP Include files so I have no idea how to do string without apstring.h XD
ModeratorThere are animal crackers for people and there are people crackers for animals.
Archaic
Profile Blog Joined March 2008
United States4024 Posts
Last Edited: 2009-07-20 22:45:12
July 20 2009 22:44 GMT
#5
micronesia brings up a good point... This function is completely useless. You could just use string.Length() instead of creating a method to do the exact same thing.
EDIT: Just a random question, when using greater/less than signs, is it still shifters in C++ like in Java?
Revabug
Profile Blog Joined June 2009
United Kingdom147 Posts
Last Edited: 2009-07-20 22:45:49
July 20 2009 22:44 GMT
#6
?

I don't want to include whitespaces (as I said in the op), so strString.Length() won't work
GogoKodo
Profile Blog Joined April 2003
Canada1785 Posts
July 20 2009 22:47 GMT
#7
On July 21 2009 07:42 micronesia wrote:
Wait, couldn't you just return strString.length()? What exactly is going on lol.

When I did c++ I always used the AP Include files so I have no idea how to do string without apstring.h XD

He's trying to get the length minus the whitespace I guess.
twitter: @terrancem
VarmVaffel
Profile Blog Joined June 2008
Norway378 Posts
Last Edited: 2009-07-20 22:49:46
July 20 2009 22:48 GMT
#8
In any case, since you say that string isn't a valid parameter, my guess is that you have forgotten to include string.h, or to use the std namespace.
GogoKodo
Profile Blog Joined April 2003
Canada1785 Posts
July 20 2009 22:49 GMT
#9
Not sure about your function since it's been so long since I did c++ but you should be able to google for c++ string function arguments to find the correct way.

On another note, currently you are only getting rid of the ' ' (spaces) in your count, and not any whitespace such as a tab. Might want to look into that as well.
twitter: @terrancem
Revabug
Profile Blog Joined June 2009
United Kingdom147 Posts
July 20 2009 22:49 GMT
#10
(not including whitespace)

I don't want to include whitespaces

He's trying to get the length minus the whitespace I guess.


Adeny
Profile Blog Joined January 2009
Norway1233 Posts
Last Edited: 2009-07-20 22:55:25
July 20 2009 22:50 GMT
#11
Still, the actual length of the string and the string doesn't change, so the returned value from strString.length() will be constant throughout the entire loop no matter how many whitespaces. Just return strString.length() to a nSomething and use nChar < nSomething in the loop. I can't see why this wouldn't work?

To clarify, say your string is "HI MOM".

You get the length of the string which is 6 characters.
You loop through, count the H, nLength ++1;
Loop through, count the I, nLength ++1;
Loop through, won't count the whitespace.
Loop through, counts the M, nLength ++1;
Loop through, counts the O, nLength ++1;
Loop through, counts the M, nLength ++1;

At the end of this, you will have the length of the actual string which will still be 6 characters, and the nLength variable which you individually use to count the characters except for the whitespace which will be 5.
b3h47pte
Profile Blog Joined May 2007
United States1317 Posts
July 20 2009 22:50 GMT
#12
What IDE are you using? I loaded your code up into Visual Studios 2008 and it works fine.
http://pastebin.com/m1fe7c353

Results in

[image loading]


are you making sure you include iostream and using namespace std?
GogoKodo
Profile Blog Joined April 2003
Canada1785 Posts
July 20 2009 22:51 GMT
#13
Ok after a quick google I found some code using this syntax

void function (std::string &str)
{
}
twitter: @terrancem
Archaic
Profile Blog Joined March 2008
United States4024 Posts
July 20 2009 22:52 GMT
#14
Oh, I see what you mean now! If you want to ignore tabs, you may consider using the C++ equivalent of the Java:
strString[nChar] != ' ' && !(strString[nChar]+"").equals("\t");
The second part is converting the character to a string, to use .equals() function (in Java, Strings don't use ==), and comparing it to the string of a tab (\t).
But other than that, I can't really see an obvious problem. You may consider issues not within the code, but within your compiler.
GogoKodo
Profile Blog Joined April 2003
Canada1785 Posts
July 20 2009 22:53 GMT
#15
Make sure you're compiling the correct up to date version of the code and using the updated executable. Silly thing to point out but this is what cause several pages of confused people in konadora's blog asking for programming help.
twitter: @terrancem
Revabug
Profile Blog Joined June 2009
United Kingdom147 Posts
Last Edited: 2009-07-20 22:59:40
July 20 2009 22:59 GMT
#16
I didn't realise I needed to add using namespace std; before the function, I thought I could just add it in int main() where the function would get called because that's when it would be run first..

Thanks
b3h47pte
Profile Blog Joined May 2007
United States1317 Posts
July 20 2009 23:21 GMT
#17
I'm glad I (we) could help! Good luck learning C++! It's a rewarding experience.
2Pacalypse-
Profile Joined October 2006
Croatia9530 Posts
July 20 2009 23:49 GMT
#18
I'm a C programmer, and I'm just wondering did C++ abandon pointers completely or can you still use them?

Moderator"We're a community of geniuses because we've found how to extract 95% of the feeling of doing something amazing without actually doing anything." - Chill
b3h47pte
Profile Blog Joined May 2007
United States1317 Posts
July 20 2009 23:54 GMT
#19
yea you can use pointers in C++.
2Pacalypse-
Profile Joined October 2006
Croatia9530 Posts
July 21 2009 00:08 GMT
#20
Oh ok.
And sorry for taking over the thread, but what's with this string data type?
What's the difference between string type and char[]?

Even though I prefer C over all other programs, I'm gonna have to do some C++ for uni this year so just getting prepared I guess...
Moderator"We're a community of geniuses because we've found how to extract 95% of the feeling of doing something amazing without actually doing anything." - Chill
1 2 Next All
Please log in or register to reply.
Live Events Refresh
Monday Night Weeklies
17:00
#44
SteadfastSC636
TKL 409
IndyStarCraft 293
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SteadfastSC 636
TKL 409
IndyStarCraft 293
UpATreeSC 112
JuggernautJason100
StarCraft: Brood War
sorry 72
Bonyth 62
NotJumperer 36
Nal_rA 29
Dota 2
monkeys_forever382
canceldota86
League of Legends
JimRising 481
Counter-Strike
tarik_tv6391
pashabiceps2514
fl0m1203
Other Games
summit1g7297
Grubby4071
Beastyqt707
shahzam238
KnowMe172
C9.Mang0136
ArmadaUGS116
Trikslyr59
Livibee51
Mew2King36
Organizations
Dota 2
PGL Dota 2 - Main Stream449
Other Games
BasetradeTV129
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• kabyraGe 230
• Reevou 7
• Kozan
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• LaughNgamezSOOP
• IndyKCrew
StarCraft: Brood War
• Eskiya23 4
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• WagamamaTV245
League of Legends
• Scarra1315
• TFBlade1067
Other Games
• imaqtpie1259
• Shiphtur155
Upcoming Events
WardiTV Team League
15h 8m
PiGosaur Cup
1d 3h
Kung Fu Cup
1d 14h
OSC
2 days
The PondCast
2 days
KCM Race Survival
2 days
WardiTV Team League
2 days
Replay Cast
3 days
KCM Race Survival
3 days
WardiTV Team League
3 days
[ Show More ]
Korean StarCraft League
4 days
RSL Revival
4 days
Maru vs Zoun
Cure vs ByuN
uThermal 2v2 Circuit
4 days
BSL
4 days
RSL Revival
5 days
herO vs MaxPax
Rogue vs TriGGeR
BSL
5 days
Replay Cast
6 days
Replay Cast
6 days
Afreeca Starleague
6 days
Sharp vs Scan
Rain vs Mong
Wardi Open
6 days
Monday Night Weeklies
6 days
Liquipedia Results

Completed

Proleague 2026-03-15
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
BSL Season 22
CSL Elite League 2026
RSL Revival: Season 4
Nations Cup 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

ASL Season 21
Acropolis #4 - TS6
2026 Changsha Offline CUP
Acropolis #4
IPSL Spring 2026
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
NationLESS Cup
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.