If I have a string, e.g.
setting=value
How can I remove the '=' and turn that into two separate strings containing 'setting' and 'value' respectively?
Thanks very much!
|
|
|
Two options spring to mind. The first
The second uses regexes directly to parse the
The second gives you more power. For example you can automatically lose white space if you change the pattern to:
|
|||
|
|
|
You don't need a regular expression for this, just do:
You might want to set a |
|||||||
|
|
Another option:
This solution is fairly robust. |
|||
|
|