/    Sign up×
Community /Pin to ProfileBookmark

Replace a charachter in a string while keeping the rest of the string

If I am pulling a variable name from a dayabase on the sserver, and I want to extract any spaces in the name and replace it with underscores, how would I go about doing it. I looked at ereg_replace() but that will not save the rest of the string.

an example:

I want to make the word “Foo Bar” look like “Foo_Bar”

to post a comment
PHP

1 Comments(s)

Copy linkTweet thisAlerts:
@crh3675Apr 19.2004 — Yes it will:

<i>
</i>$str=eregi_replace("s","_",$str);


PREG_REPLACE is a bit faster:

<i>
</i>$str=preg_replace("/s/","_",$str);
×

Success!

Help @Gameline146 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.6,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...