File: string_utils.h

package info (click to toggle)
freespace2 25.0.0~rc11%2Brepack-1
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid
  • size: 47,232 kB
  • sloc: cpp: 657,500; ansic: 22,305; sh: 293; python: 200; makefile: 198; xml: 181
file content (41 lines) | stat: -rw-r--r-- 938 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#pragma once

#include "globalincs/pstypes.h"

namespace util {

template <typename Out>
void split_string(const SCP_string& s, char delim, Out result)
{
	SCP_stringstream ss(s);
	SCP_string item;
	while (std::getline(ss, item, delim)) {
		if (!item.empty()) {
			*(result++) = item;
		}
	}
}

std::vector<std::string> split_string(const std::string& s, char delim);

bool isStringOneOf(const std::string& value, const std::vector<std::string>& candidates);

// get a filename minus any leading path
template <typename T>
T *get_file_part(T *path)
{
	T *p = path + strlen(path)-1;

	// Move p to point to first character of filename (check both types of dir separator)
	while( (p >= path) && (*p != '\\') && (*p != '/') && (*p != ':') )
		p--;

	p++;

	return p;
}

std::unique_ptr<char[]> unique_copy(const char *str, bool null_if_empty);
SCP_vm_unique_ptr<char> vm_unique_copy(const char *str, bool null_if_empty);

} // namespace util