microsoft-visualbasic-runtime/Language/StringHelpers.vb

108 lines
3.3 KiB
VB.net
Raw Normal View History

2019-05-22 19:02:42 +08:00
#Region "Microsoft.VisualBasic::024d215f06ecc1b4e0d2dc2c071b4650, Microsoft.VisualBasic.Core\Language\StringHelpers.vb"
2018-08-02 20:14:48 +08:00
' Author:
'
' asuka (amethyst.asuka@gcmodeller.org)
' xie (genetics@smrucc.org)
' xieguigang (xie.guigang@live.com)
'
' Copyright (c) 2018 GPL3 Licensed
'
'
' GNU GENERAL PUBLIC LICENSE (GPL3)
'
'
' This program is free software: you can redistribute it and/or modify
' it under the terms of the GNU General Public License as published by
' the Free Software Foundation, either version 3 of the License, or
' (at your option) any later version.
'
' This program is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
' GNU General Public License for more details.
'
' You should have received a copy of the GNU General Public License
' along with this program. If not, see <http://www.gnu.org/licenses/>.
' /********************************************************************************/
' Summaries:
' Module FormatHelpers
'
' Function: StringFormat, xFormat
'
' Structure FormatHelper
'
' Function: ToString
' Operators: (+2 Overloads) <=, (+2 Overloads) >=
'
'
' /********************************************************************************/
#End Region
Imports System.Runtime.CompilerServices
Imports Microsoft.VisualBasic.Language.C
Namespace Language
''' <summary>
''' ``<see cref="sprintf"/>`` syntax helpers
''' </summary>
Public Module FormatHelpers
''' <summary>
''' ``<see cref="sprintf"/>`` extensions
''' </summary>
''' <param name="s"></param>
''' <returns></returns>
<Extension>
Public Function xFormat(s As String) As FormatHelper
Return New FormatHelper With {.source = s}
End Function
''' <summary>
''' Synax like ``"formats" &lt;= {args}.xFormat``
''' Format by <see cref="sprintf"/>
''' </summary>
''' <param name="args"></param>
''' <returns></returns>
<Extension>
Public Function StringFormat(args As String()) As FormatHelper
Return New FormatHelper With {.args = args}
End Function
End Module
''' <summary>
''' ``<see cref="sprintf"/>`` reference
''' </summary>
Public Structure FormatHelper
Dim source$, args$()
Public Overrides Function ToString() As String
Return source
End Function
Public Shared Operator <=(pattern As String, format As FormatHelper) As String
Return sprintf(pattern, format.args)
End Operator
Public Shared Operator >=(pattern As String, format As FormatHelper) As String
Throw New NotSupportedException
End Operator
Public Shared Operator <=(format As FormatHelper, args As String()) As String
Return sprintf(format.source, args)
End Operator
Public Shared Operator >=(format As FormatHelper, args As String()) As String
Throw New NotSupportedException
End Operator
End Structure
End Namespace